David Boike
David Boike

Reputation: 18645

How to implement a WCF NetPeerTcpBinding PeerResolver

I can't use Peer Name Resolution Protocol on our network because our server farm's routers won't support IPv6.

So, I'm attempting to implement my own PeerResolver using a database.

It's working pretty well as a proof-of-concept, but since the documentation is basically non-existant, I'm having a hard time deciding how to manage things. For instance:

I would love it if there was someone out there with a lot of WCF experience who could shed some light on these issues.

Upvotes: 5

Views: 1851

Answers (2)

Tony
Tony

Reputation: 11

You can also use this open source framework that reduces a lot of the overhead of implementing a resolver. Then you can concentrate on writing the storage manager instead of all the plumbing. It's also fairly documented.

http://wcfpeerresolver.codeplex.com/

Upvotes: 1

TFD
TFD

Reputation: 24534

As documented on MSDN Microsoft's Peer Name Resolution Protocol uses Teredo tunnelling to solve the IP6/IP4 access issue.

Just allow Teredo tunnelling for the server farm, it just works

Upvotes: 1

Related Questions