I am attempting to post data from an Android application running in the Android Emulator on my local machine to a web application running under IIS Express also running on m
Add following line to IIs config file (ex c:\Users[YourName]\Documents\IISExpress\config\applicationhost.config ) Change the port 8085 if required..
so your config file will end-up with something like this
// the existing one
// new line
now you can call your web service from remote by calling to port 8085
ex from android emu.
new HttpPost("http://10.0.2.2:8085");