B4J Question B4J and Firewall

FrankBerra

Active Member
Licensed User
Longtime User
Hello everyone
I am facing a strange problem:
behind corporate firewall i can browse with any browser to www.mysite.com/test.php?&Param1=Param1&Param2=Param2 and everything works but when i use the following command in B4A the firewall says that request is blocked without specify any other information.
B4X:
ContactServer.PostString("http://www.mysite.com/test.php?" & "&Param1=" & Param1 & "&Param2=" & Param2, "")
Should i take care about something that i don't know?
I can ask to my admin to open ports or enable something, but what?
Any suggestion?

Thanks in advance!
 

OliverA

Expert
Licensed User
Longtime User
The equivalence the browser action you are performing in you initial post is a GET action. This (GET) is reproduced with the the Download method, not PostString (that does a POST action). If you are passing parameters in the URL, it's even better if you use Download2, since that will "encode illegal parameter characters" for you. Another issue is that there should be no '&' before the first parameter in a URL query string.
 
Upvote 0
Top