RE: [PHP] secure sockets

2002-07-23 Thread Patrick Lynch
Hi Josh, I have not done this myself but afaik, you can use curl to so this. http://www.php.net/manual/en/ref.curl.php Best Regards, Patrick Lynch. Optip Ltd, Internet Mobile Development Co. Clare, Ireland. http://www.optip.com/ -Original Message- From: Josh Levine [mailto:[EMAIL

RE: [PHP] secure sockets

2002-07-23 Thread Peter
josh just a query did u try it with https:// rather than ssl:// ? -Original Message- From: Josh Levine [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 24 July 2002 9:53 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] secure sockets Thanks for the pointer! I had looked at it, but didn't

Re: [PHP] secure sockets

2002-07-23 Thread Josh Levine
Thanks for the pointer! I had looked at it, but didn't see too much information on using CURL with a telnet type application. I'll take a closer look at it. --Josh Levine Patrick Lynch wrote: Hi Josh, I have not done this myself but afaik, you can use curl to so this.

Re: [PHP] secure sockets

2002-07-23 Thread Evan Nemerson
Patrick is right in that you can use CURL to do this, but as of PHP 4.3.0, you can use https:// if you have compiled in OpenSSL support. On Tuesday 23 July 2002 11:56 am, Josh Levine wrote: I'm trying to connect to a Java application that's listening on a socket using SSL. I am trying to

Re: [PHP] secure sockets

2002-07-23 Thread Josh Levine
- From: Josh Levine [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 24 July 2002 9:53 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] secure sockets Thanks for the pointer! I had looked at it, but didn't see too much information on using CURL with a telnet type application. I'll take

Re: [PHP] secure sockets

2002-07-23 Thread Mike Mannakee
I have not done this but have studied enough tcp/ip to know that ssl is not a protocol. The opening portion would refer to your protocol, like http or ftp. One would access via ssl using https://, not ssl:// Try that. Curl would be your other option, and that should work just fine for most

Re: [PHP] secure sockets

2002-07-23 Thread Josh Levine
Mike Mannakee wrote: I have not done this but have studied enough tcp/ip to know that ssl is not a protocol. The opening portion would refer to your protocol, like http or ftp. One would access via ssl using https://, not ssl:// Try that. According to the docs, 4.3.0 will support such a