I have some requirement where i need to configure WCF service over TCP/IP protocol. I am able to do that by adding end point. Client which is going to consume service will use some tool to push information. That tool take only IP address and Port Number.
Now i need some way to invoke service method by default on hitting IP with TCP/IP port. Is there any way to implement this? Or any workaround for this?
What i need is that there is some method in service i.e. UploadFile. Service is using netTCPbinding. I have hosted it on server. so the URL is something "net.tcp://XXX.XXX.XX.XXX:8080/XXXXServices.svc/mextcp". Customer is using this for consuming. BUT the problem is my customer using some tool which accpt only IPAdress and Port No over TCP. I am trying to configure service in such a way that when he sent, data by default UploadFile service get called. I hope it's make sense.
Thanks!