asp.net - Why don't my .asmx service is accessible to others in the same network? -


i have hosted website has .asmx webservice in iis locally, accessible via ip address , webservice path in local system not other systems on same network.

http://192.168.1.111/ds/adds.asmx 

now linked can accessed on computer not on others in same network.

you need allow incoming connections application. start cmd.exe administrator , run command:

netsh http add urlacl url=http://192.168.1.111:80/ user=everyone 

Comments