Reputation: 25347
I've got a mex endpoint located at
net.tcp://localhost:8666/Service/mex
It causes some errors when adding service to visual studio, so, I'd like to examine the xml.
Obviously, typing the address in my browser does not work. What does?
Upvotes: 2
Views: 395
Reputation: 25742
WcfTestClient is capable of examining TCP MEX endpoints so fire up VS console and type WcfTestClient.exe
. You can then put in the endpoint address and start examining the metadata.
Upvotes: 1
Reputation: 2500
Fiddler will. (You'll have to tune it a bit to show localhost traffic, or just use your network name address/ip) http://fiddler2.com/fiddler2/
I don't know about mex, but you'll possibly see the xml decoded with WCF Binary Inspector for Fiddler (not included in installation, available in the plugins section).
Upvotes: 1