1
I have a webservice on Asp.net mvc 4 running on my local pc if I do http://localhost:14807
works blazin, but if I do, http://192.168.1.105:14807
which is itself does not work, the same happens if I try to access from another device. I am using VS 2013.
How do I enable external access ?
I found some options at this link: http://stackoverflow.com/questions/3313616/iis-express-enable-external-request
– Fabio Campinho
In the first case, you are accessing using port 14807, in the second case the port number is missing:
http://192.168.1.105:14807
. I will try to come up with a clearer answer.– Vitor Subhi
@Vítorsubhi yes, in the second case I did not inform the door but I am trying with the port tbm, I will edit the post to put it.
– FernandoPaiva
Solved, I did exactly as on the link: http:/johan.driessen.se/posts/Accessing-an-IIS-Express-site-from-a-remote-computer
– FernandoPaiva