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

Password Validation

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to validate the user and its password. I have a HTML file which asks for Userid and password. I want to validate the user and password through SSL Technique. I am using Java webServer.
I know that we have to create Digital Certificate and we have to use it. These are the ideas I have.
Problem is - How to achieve this? It would be great if someone can send me the Ideas along with code.
Thanks in advance.
Rakesh
 
Ranch Hand
Posts: 110
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
To validate the userid and password you would need to compare them against a database or some file which contains a list of valid userid/password combinations. SSL is not really intended to perform "validation" but is really meant as a means of encrypting the data stream between the user and server.
Look at using servlets or JSP, and possibly JDBC (database) to get this functionality.
------------------
JFind - Your Java Resource www.jfind.com
 
Ranch Hand
Posts: 243
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
have a look at this
reply
    Bookmark Topic Watch Topic
  • New Topic