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
uses.  I don't know how you have the app set up but that may be what you
need.

Mike


"Patrick Lynch" <[EMAIL PROTECTED]> wrote in message
news:!~!UENERkVCMDkAAQACAAAAAAAAAAAAAAAAABgAAAAAAAAAM/+wtTlkR0mNI0OgSgYDtcKA
[EMAIL PROTECTED]
> 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 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 can find,
> it just doesn't create the file-handler.
>
> Here's some sample code:
>
> <?
> $hostname = 'ssl://155.246.211.23';
> $portnumb = '60324';
>
> $sock = fsockopen($hostname, $portnumb, $errno, $errstr);
>
> fwrite($sock, "9\n");
> print ( fgets($sock,6) );
> print $errno;
> print $errstr;
> fclose($sock);
> ?>
>
> That returns:
>
> Warning: fwrite(): supplied argument is not a valid File-Handle resource
> in /usr/home/research/htdocs/tests/secure.php on line 8
>
> Warning: fgets(): supplied argument is not a valid File-Handle resource
> in /usr/home/research/htdocs/tests/secure.php on line 10 0
> Warning: fclose(): supplied argument is not a valid File-Handle resource
> in /usr/home/research/htdocs/tests/secure.php on line 20
>
> Thanks in advance for any help,
> Josh Levine
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to