• 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

basic doubts

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am working on a website which includes some pages that needs the data to be transmitted between the client and the server to be secure. i.e. the transaction should be through SSL. I know bits and pieces about SSL but i am not able to locate any source of information or examples etc. as to how can i implement SSL in my application.
Also I want to know how the things behind the scene works. Does the data collected from html form will be encrypted in SSL and how does webserver decrypt and uses the data? I have all basic questions. Please do answer.
Thanks
[ September 19, 2003: Message edited by: Megha Roy ]
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, it uses SSL, but this is usually implemented as HTTP over SSL, also known as HTTPS. What this means is that you still talk basic HTTP, and the transport layer takes care of managing the SSL part.
As to the implementation specifics, there are a few options and it is also vendor specific. You can have the App server provide the HTTPS implementation, or you can have the Web Server provide SSL and talk basic HTTP with the app serever, or you can implement it twice, SSL from the Web Server and SSL between the Web and App Servers.
You'll need to check the documentation for your server though.
Dave
 
Oh the stink of it! Smell my tiny ad!
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic