I have a basic page set up online on my server which processes Post Data from like a html form. The page returns xml data if the post requirements are met (correct username etc.) else, a 0.
It works perfectly in a browser.
I am using httppost in android to post to this page, however, my try catch block is going into IOexception. First off, I don’t know how to actually view what is the problem since I don’t know where stacktrace prints to.
The web page code just gets post data $password = md5($_POST['password']); simple enough.
$user = $_POST["username"];
Is there anything I am supposed to be doing server side maybe?
Needed to add internet permission in manifest file.. d’oh! Thanks dave.c.