0

I can browse using the desktop browsers via ..localhost:54647/... and from windows mobile emulators via my gateway ..//192.168.0.199:54647/..., but neither method works from either my Android emulator or from a usb attached itouch. I know I may have to run IIS locally but it's more convenient to run the development server from Visual Studio 2008.

I'm running Vista with latest service packs.

I'm developing a mobile app using ASP.Net MVC.

Thanks!

2 Answers2

0

See this StackOverflow answer here. To summarize: only running on the local interface is by design. IIS is your best bet.

Community
  • 1
  • 1
Andrew Flanagan
  • 4,267
  • 3
  • 25
  • 37
0

I found a solution and now I debug from VS 2010 with my web app running on my usb attached iTouch. The solution was portforward.exe that forwards requests from the ASP.NET development server to local port 8080.

Can't remember which site I got it from but this one has it: http://www.quantumg.net/portforward.php.

I entered: localport: 8080, remotehost: localhost, remote port: 50779 (the ASP.NET development server's port).

Hope this helps someone else...