I don't know if it is repeated question or not but due to my search I couldn't find anything related.
I have made a WCF service and it works fine. Now I want to deploy it and use it as a reference in my project which is going to be used in different places.
when I want to install my Software for the client in his server I need to change the base address to the appropriate IP Address in the server. also, there could be different IP Addresses in different servers for different client and I don't want to deploy a wcf service with its specific base address for each client.
Could you make any suggestions and tell me what is the best solution in this area.
Please
In my Service I use two base address like this :
<add baseAddress="localhost:8080/"/>;
And another one like the same but with net.tcp binding. I want to know instead of localhost how can I use IP address when my service is deploying in clients servers