0
Hello Hari,
I think you can manage it by adding IP Filter to your config file.IPFilter adds specific IP Address so that any client who doesnt have the same IP fails to connect.
In your scenario, you can implement the server IP address in wcf config file and limit only this one to be able to connect and consume service.
Sample usage:
- <serviceBehaviors>
- <behavior name="WCFServiceBehaviour">
- <serviceMetadata httpGetEnabled="true" />
- <serviceDebug includeExceptionDetailInFaults="true" />
- <IPFilter filter="127.0.0.1" />
- </behavior>
- </serviceBehaviors>