Quote: "agk::SetHTTPHost(http_conn, "XXX.XXX.XXX.XXX/MyFolder", 0);
...
agk::SendHTTPRequest(http_conn, "Server.php", body.c_str());"
That should be
agk::SetHTTPHost(http_conn, "XXX.XXX.XXX.XXX", 0);
...
agk::SendHTTPRequest(http_conn, "MyFolder/Server.php", body.c_str());
Quote: "Add a variable to the function and all we will be happy."
I'll consider it for a future update, but having a request take 6 seconds in the Sync version will stall the app and make Android think it is not responding anyway. A better course of action would be to find out why it is failing, for example does it happen with other servers or other devices, or does the above fix solve the problem.
Quote: "hi Paul. how about my questions?"
I don't know why it wouldn't compile, part of the reason I put rewriting the compiler high on my list.