Hello,
I am calling http request on open stack and it does not seems to return anything in the organizations which have very strong firewall. ( Note: I am not using any socket connnection in revolution )
The http request looks like this
put "http://www.xyz.com/start.php?action=start" into URLString
put URL URLString into resultText
The resultText is empty when we are running the stand alone behind the strong firewall but it retuns right results when we run on computers even outside our intranet.
Do you think that firewall can block http request from rev applications ?
Please let me know if you hae some insights.
Thanks
Best Regards
Pradeep
Put requests to server are blocked by firewall
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Hi Pradeep,
Either the firewall blocks port 80 if the requesting application is unknown by the firewall or the server redirects the url to one on a different port. Either way, it is not Rev's fault.
Organisations with super strong firewalls usually also have a very good proxy server. Try setting the httpProxy in Revolution.
Best,
Mark
Either the firewall blocks port 80 if the requesting application is unknown by the firewall or the server redirects the url to one on a different port. Either way, it is not Rev's fault.
Organisations with super strong firewalls usually also have a very good proxy server. Try setting the httpProxy in Revolution.
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Put request are blocked by firewall
Mark, thanks for your response.
You are right, the requests are blocked because few machines are using proxy settings to connect to the internet.
After talking to clients, I have figured out that internet on their machine is configured in two ways ( either by specifying the proxy server name and port manually in local area connection settings in IE OR specifying the list of proxy servers and correspondig ports in the script file )
do you know what could be done in revolution script so that it autmatically take care of those proxy things ?
Do we need to prompt user to enter the proxy server and ports in the pop up window and set those fields at run time by using following line ?
set the HTTPProxy to PoxyServerAdress & ":" & portNumber.
Please let me know if you have some other insights.
Thanks for your help.
Regards
Pradeep
You are right, the requests are blocked because few machines are using proxy settings to connect to the internet.
After talking to clients, I have figured out that internet on their machine is configured in two ways ( either by specifying the proxy server name and port manually in local area connection settings in IE OR specifying the list of proxy servers and correspondig ports in the script file )
do you know what could be done in revolution script so that it autmatically take care of those proxy things ?
Do we need to prompt user to enter the proxy server and ports in the pop up window and set those fields at run time by using following line ?
set the HTTPProxy to PoxyServerAdress & ":" & portNumber.
Please let me know if you have some other insights.
Thanks for your help.
Regards
Pradeep
passing user name and password with HTTP Proxy
To connect to the internet through proxy, I am using the following code
set the HTTPProxy to PoxyServerAdress & ":" & portNumber.
If the proxy demands for authentication then how to pass username and password in the above code ?
Any idea ?
set the HTTPProxy to PoxyServerAdress & ":" & portNumber.
If the proxy demands for authentication then how to pass username and password in the above code ?
Any idea ?
Hi Pradeep,
The following posts to the Rev Use List contain important information. I hope this solves the problem.
http://search.gmane.org/?query=authoriz ... n.user---A
Best,
Mark
The following posts to the Rev Use List contain important information. I hope this solves the problem.
http://search.gmane.org/?query=authoriz ... n.user---A
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode