Hi Kevin,
Just something to try - this pointed me in the right direction when my connection from iOS and Android wouldn't play ball. Here:
global http as integer : http = CreateHTTPConnection()
SetHTTPHost(http, "www.example.com", 1)
SendHTTPRequestASync(http, "app/v2.3.0.beta.1/dateandtime.php")
Have you tried putting a php file (or html file) in the root, without the path, and then seeing whether your app can retrieve it on Android?
global http as integer : http = CreateHTTPConnection()
SetHTTPHost(http, "www.example.com", 1)
SendHTTPRequestASync(http, "dateandtime.php")
or
global http as integer : http = CreateHTTPConnection()
SetHTTPHost(http, "www.example.com", 1)
SendHTTPRequestASync(http, "helloworld.html")
I wonder whether it's a problem with paths or with capitalisation - are all of your folders and files in lower case only on the server?
A shot in the dark, but hope this helps!
James