Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm hosting a WCF service in IIS 7.5. The service has one endpoint with webHttpBinding, and one endpoint with netTcpBinding. How can I limit access to the nettcp endpoint, so that only local clients (clients running on the same machine) has access? Is it enough to just set the base address to localhost-something?

share|improve this question

1 Answer

up vote 2 down vote accepted

Will suggest to use NetNamedPipeBinding which is meant for on-machine communication only.

Regarding limiting access to tcp binding, I guess you can use IDispatchMessageInspector to limit the access. For example, see this code-project article that has use it for IP Address based filtering - configuring it for local IP (127.0.0.1) should get exactly what you wanted.

share|improve this answer
Ah, forgot about that binding. Thank you for the example code, it might come in handy, since I might want to give remote clients access in the future. – Joel Oct 11 '11 at 9:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.