aspose file tools
The moose likes Servlets and the fly likes Displaying Login Window Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Displaying Login Window" Watch "Displaying Login Window" New topic
Author

Displaying Login Window

John Fairbairn
Ranch Hand

Joined: May 30, 2002
Posts: 55
Hi,
New to servlets so bear with me...
I'd like to have a user login with a username and password before displaying a purchase order. Right now, I created my own custom login servlet which verifies the username and password against a database and then if the login was valid redirects the user to the PO servlet.
But, I'm hoping there is a standard Java API to prompt a user with a login window . I'm also wondering whether storing the username and password in a database is the securest way to go about this.
Your input is appreciated.
Anthony Villanueva
Ranch Hand

Joined: Mar 22, 2002
Posts: 1055

But, I'm hoping there is a standard Java API to prompt a user with a login window .

Most web servers have a convenient way of implementing some sort of client authentication. This is called declarative security.
You can use this sample chapter from Marty Hall's More Servlets and JSPs. You'll find Section 5.9 "Providing Security" particularly relevant.
Aside from JDBC Data Sources, some web servers allow you to refer to authentication information in LDAP servers, or Windows domains.
You can also check out
JAAS
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Displaying Login Window
 
Similar Threads
Help me Please!!!
servlet querying active directory
logout
User Authentication and login System in JAVA
basic authentication