I have an app that talks to my wamp server using http req and response .
I have set my serveripaddress as xx.xxx.xx.xx:8080/ and am using it in the app , to ping my database .. ( for ex: user login) ..
But , I don't think the communication is taking place after the click activity ...
What other modifications are required ?
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(serveripaddress.servipaddr+"register.php");
THANKS