• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Accessing the URL

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
All,
Here's a piece of code I've got to access a https site. It's fine as far as getting to the host. example: www.bankofrajeev.com But I need to go to a directory beyond the host like www.bankofrajeev.com/outbound. I need to use the SSLSocket and how can this be accomplished? Please help as I have to finish this project by today. My previous question didn't evoke any response and I think I've resolved it. So please do help!!!
SSLSocketFactory sf = sslContext.getSocketFactory();
System.out.println("created socket factory");
SSLSocket socket = (SSLSocket)sf.createSocket( host, port );
Rajeev.
 
(instanceof Sidekick)
Posts: 8791
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Talking about directories sounds like you want files rather than a raw socket. Here's how I did it:

See if that helps!
reply
    Bookmark Topic Watch Topic
  • New Topic