Posted By:
Ilija_Jovanoski
Posted On:
Tuesday, May 14, 2002 11:45 PM
If I get the Output stream from a client side(browser) for HTTP request it can be e.g.:
GET http://www.some_site.com/dirs/file.gif HTTP/1.0
...
But, when the user wants to connect to
https://www.somesite.com/dir1/dir2/dir3/img.gif
the request is:
CONNECT www.somesite.com:443 HTTP/1.0
...
My question is : where is the part for /dir1/dir2/dir3/img.gif ?
And how to connect to the https site using sslsockets not URL object?
Thank you.