Re: HTTPProxy

2014-09-30 Thread Mats Åström
I have now tried builds in both 6.7 and 7.0 - without setting HTTPProxy. The proxy does not require NTLM authentication so it should work but doesn't. I get this message: ERROR: error socket timeout So still no luck (it is a time consuming task since I have to travel to my client and test any

AW: HTTPProxy

2014-09-30 Thread Tiemo Hollmann TB
, 30. September 2014 17:17 An: use-livecode@lists.runrev.com Betreff: Re: HTTPProxy I have now tried builds in both 6.7 and 7.0 - without setting HTTPProxy. The proxy does not require NTLM authentication so it should work but doesn't. I get this message: ERROR: error socket timeout So

Re: HTTPProxy

2014-09-30 Thread Mark Talluto
. Best regards, Mark Talluto livecloud.io canelasoftware.com On Sep 30, 2014, at 8:16 AM, Mats Åström matsast...@yahoo.se wrote: I have now tried builds in both 6.7 and 7.0 - without setting HTTPProxy. The proxy does not require NTLM authentication so it should work but doesn't. I get

Re: HTTPProxy

2014-09-30 Thread Trevor DeVore
On Tue, Sep 30, 2014 at 11:16 AM, Mats Åström matsast...@yahoo.se wrote: I have now tried builds in both 6.7 and 7.0 - without setting HTTPProxy. The proxy does not require NTLM authentication so it should work but doesn't. I get this message: ERROR: error socket timeout So still no luck

Re: HTTPProxy

2014-09-30 Thread Bruce Pokras
, 2014 at 11:16 AM, Mats Åström matsast...@yahoo.se wrote: I have now tried builds in both 6.7 and 7.0 - without setting HTTPProxy. The proxy does not require NTLM authentication so it should work but doesn't. I get this message: ERROR: error socket timeout So still no luck (it is a time

HTTPProxy

2014-09-27 Thread Mats Åström
Hi all, having read up on, and tried, most posts with suggestions on how to make LiveCode access the web through a proxy, I'm in a cul-de-sac. It works fine (POST-ing a SOAP web service) without going through a proxy. Although I get error timeout when HTTPProxy is set to my clients proxy

Re: httpproxy and revBrowser

2012-06-28 Thread Mark Schonewille
httpproxy setup and working correctly in the Livecode environment but the settings don't seem to apply in the revBrowser environment. Is that to be expected? If so, how can I implement my proxy settings within Livecode so that revBrowser will see and use them? Terry... Dr Terry Judd Senior

httpproxy and revBrowser

2012-06-27 Thread Terry Judd
I'm pretty sure I've got httpproxy setup and working correctly in the Livecode environment but the settings don't seem to apply in the revBrowser environment. Is that to be expected? If so, how can I implement my proxy settings within Livecode so that revBrowser will see and use them? Terry

can the httpproxy setting include a username and password

2012-06-25 Thread Terry Judd
When setting the httpproxy property, can you include a username and password in front of it (username:password@host:port) and if so, is it used or ignored? Terry... Dr Terry Judd Senior Lecturer in Medical Education Medical Eduction Unit Faculty of Medicine, Dentistry Health Sciences

AW: can the httpproxy setting include a username and password

2012-06-25 Thread Tiemo Hollmann TB
As far as I know, you set the HTTPProxy only to theServerAddress colon thePort But you can use the base64Encode(theUserName colon thePassword) in the httpHeaders Tiemo -Ursprüngliche Nachricht- Von: use-livecode-boun...@lists.runrev.com [mailto:use-livecode- boun

Re: can the httpproxy setting include a username and password

2012-06-25 Thread Terry Judd
... On 25/06/2012, at 08:25 PM, Tiemo Hollmann TB wrote: As far as I know, you set the HTTPProxy only to theServerAddress colon thePort But you can use the base64Encode(theUserName colon thePassword) in the httpHeaders Tiemo -Ursprüngliche Nachricht- Von: use-livecode-boun

AW: can the httpproxy setting include a username and password

2012-06-25 Thread Tiemo Hollmann TB
Thanks Tiemo - so something like... set the httpHeaders to Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ= yeah? Yes looks like Will this have the same effect as setting the web proxy (and supplying a username and password) in the proxies tab of the Network preferences panel on a Mac?

Re: can the httpproxy setting include a username and password

2012-06-25 Thread Terry Judd
On 25/06/2012, at 09:17 PM, Tiemo Hollmann TB wrote: Thanks Tiemo - so something like... set the httpHeaders to Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ= yeah? Yes looks like Will this have the same effect as setting the web proxy (and supplying a username and password) in the proxies

Re: can the httpproxy setting include a username and password

2012-06-25 Thread Dave Cragg
On 25 Jun 2012, at 11:42, Terry Judd wrote: Thanks Tiemo - so something like... set the httpHeaders to Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ= yeah? I think for a proxy, it should look like this: set the httpHeaders to Proxy-Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ= Cheers

Re: can the httpproxy setting include a username and password

2012-06-25 Thread Terry Judd
On 26/06/2012, at 12:04 AM, Dave Cragg dave.cr...@lacscentre.co.uk wrote: On 25 Jun 2012, at 11:42, Terry Judd wrote: Thanks Tiemo - so something like... set the httpHeaders to Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ= yeah? I think for a proxy, it should look like this: set