Loving B4A, so powerful, will be purchasing the full version as soon as I get paid as a priority.
Now for my question, I am trying to communicate with the database of my website. The website is written in Codeigniter and due to the load balancing in place, the domain may hit one of several servers and therefore one of several backend mysql servers.
I have written a controller to handle requests coming from the app, all tested and working ok. My problem comes from the app.
I have the following command:
job.PostString("http://www.<mywebsitehere>.co.uk/index.php/<controllerhere>/login/", Query)
and have also tried:
job.PostString("http://www.<mywebsitehere>.co.uk/<controllerhere>/login/", Query)
Login is obviously the function within the controller.
Both work fine from my browser, but do not work within the app (get a 503). I can only assume it is something to do with the URL.
And advice, much appreciated.
Now for my question, I am trying to communicate with the database of my website. The website is written in Codeigniter and due to the load balancing in place, the domain may hit one of several servers and therefore one of several backend mysql servers.
I have written a controller to handle requests coming from the app, all tested and working ok. My problem comes from the app.
I have the following command:
job.PostString("http://www.<mywebsitehere>.co.uk/index.php/<controllerhere>/login/", Query)
and have also tried:
job.PostString("http://www.<mywebsitehere>.co.uk/<controllerhere>/login/", Query)
Login is obviously the function within the controller.
Both work fine from my browser, but do not work within the app (get a 503). I can only assume it is something to do with the URL.
And advice, much appreciated.