[PHP] secure sockets

2002-07-23 Thread Josh Levine
I'm trying to connect to a Java application that's listening on a socket using SSL. I am trying to use fsockopen with the address beginning with ssl://, but it doesn't work. There's no error message that I can find, it just doesn't create the file-handler. Here's some sample code: ?

RE: [PHP] secure sockets

2002-07-23 Thread Patrick Lynch
PROTECTED]] Sent: 23 July 2002 19:57 To: [EMAIL PROTECTED] Subject: [PHP] secure sockets I'm trying to connect to a Java application that's listening on a socket using SSL. I am trying to use fsockopen with the address beginning with ssl://, but it doesn't work. There's no error message that I

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
://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 PROTECTED]] Sent: 23 July 2002 19:57 To: [EMAIL PROTECTED] Subject: [PHP] secure

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
] Subject: [PHP] secure sockets I'm trying to connect to a Java application that's listening on a socket using SSL. I am trying to use fsockopen with the address beginning with ssl://, but it doesn't work. There's no error message that I can find, it just doesn't create the file-handler. Here's

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