I have created a simple wcf webservice on visual studio 2010.
I run it on ASP.NET development server.
I try to call a simple GET service local on a browser using the local url:
http://localhost:15021/MyService.svc/getData/test
That works and I get a correct JSON result. I also tried on fiddler and its working.
I would like to call it from another computer connected on the same network.
I got my local IPV4 from cmd and tried to replace the localhost with it on the other PC
http://10.0.0.14:15021/MyService.svc/getData/test
However I am getting an error 502: Connection failed
How can I call the services that I run on ASP.NET development server from another PC/Mobile on the same network?
thanks