I'm making HTTP POST's to web methods I've got running in IIS.
Although they are working I'm using ASYNCTASK - which makes it run on another thread.
I'm used to doing this with AJAX in JAVASCRIPT where you have a callback function to process the response.
It appears that the POST is "blocking" in nature - in that it waits for the response.
I'm having a hard time verifying this and I am afraid that I'm going to have problems down the road with this app.
Anyone doing HTTP POST calls from an app and can share some experiences or best method to use??
Although they are working I'm using ASYNCTASK - which makes it run on another thread.
I'm used to doing this with AJAX in JAVASCRIPT where you have a callback function to process the response.
It appears that the POST is "blocking" in nature - in that it waits for the response.
I'm having a hard time verifying this and I am afraid that I'm going to have problems down the road with this app.
Anyone doing HTTP POST calls from an app and can share some experiences or best method to use??