so this is my soap webservice url : http://localhost:50691/WebService.asmx it works fine . but i want to acess it via my ip address like this: http://192.168.1.2:50691/WebService.asmx but unfortunately i got no response. i'm using c# to create the webservice, so is there anything to do to make the webservice available ?
EDIT
i think the solution is to add to the WSDL another endpoint that contains my IP(192.168.1.2), but the question is ,how ?
`<wsdl:service name="WebService">
<wsdl:port name="WebServiceSoap" binding="tns:WebServiceSoap">
<soap:address location="http://localhost:50691/WebService.asmx"/>
</wsdl:port>
<wsdl:port name="WebServiceSoap12" binding="tns:WebServiceSoap12">
<soap12:address location="http://localhost:50691/WebService.asmx"/>
</wsdl:port>
</wsdl:service>`