944,059 Members | Top Members by Rank

Ad:
  • JSP Discussion Thread
  • Unsolved
  • Views: 11692
  • JSP RSS
Jun 22nd, 2007
0

user authentication and authorization

Expand Post »
Hi,

We are developing a software in j2ee/jboss appserver. I have designed a login page the source code of which is given below,

loginpage.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>index of third eye</title>
<link rel="stylesheet" href="stylepage.css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body><b>
<center><form name="form" method="post" action="processinfo.jsp" >
UserName: <input type="text" name = "username" value=""><br><br>
Password:
<input type="password" name="password" value=""><br><p></p>
<input type="submit" name="submit" value="Login">
<input type = "reset" name="Reset" value="Reset"><br> <p></p>
<select>
<option value="generaluser" name="opt1">General User</option>
<option value="administrator" name="opt1">Administrator</option>
</select>
</form></center>

</body>
</html>
</body>
</html>

Processinfo.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@page import="java.util.*" %>
<jsp:useBean id="idhandler" class="authenticateusers.Login" scope="request">
<jsp:setProperty name="idhandler" property="*"/>
</jsp:useBean>
<%if (idhandler.authenticateUser()){
%>
<jsp:forward page="mainpage1.html"/>
<% } else { %>
<jsp:forward page="error.jsp"/>
<% } %>

and the bean class

package authenticateusers;
import java.sql.*;
public class Login {
private String username="";
private String password="";
private String opt1[];
public Login() {
//authenticateUser();
}

public void setUsername(String username){
this.username=username;
}

public void setPassword(String password){
this.password=password;
}

public String getUsername()
{
return username;
}

public String getPassword()
{
return password;
}

public boolean authenticateUser(){
String query="select * from users;";
String DbUsername;
String DbPassword;
try {
Class.forName("org.postgresql.Driver");
Connection con=DriverManager.getConnection("jdbc:postgresql://192.168.128.150:5432/thirdeye", "postgres", "postgres");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery(query);

while (rs.next()) {
DbUsername=rs.getString("userName");
System.out.println("username:" + DbUsername);
System.out.println("Entered user name : " + username);
DbPassword=rs.getString("Password");
System.out.println("password = " + DbPassword);
System.out.println("Entered password : " + password);
if (username.equals(DbUsername)&& password.equals(DbPassword))
{
return true;
}
}

}catch(Exception e){
e.printStackTrace();
}
return false;

}
}

This code works fine for me. However we want that the users should be redirected to different pages depeding on their roles which the user selects from a drop down box while logging in. Could any one please tell me how to do that.

Thanks in advance.
Saswati
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
saswati_mishra is offline Offline
15 posts
since Jun 2007
Jun 22nd, 2007
0

Re: user authentication and authorization

Simple if statement with checking user selection will solve the problem
JSP Syntax (Toggle Plain Text)
  1. if(student)
  2. {
  3. RequestDispatcher dispatcher = getServletContex().getRequestDispatcher("/student.jsp");
  4. dispatcher.forward(request, response);
  5. }
  6. else if(teacher)
  7. {
  8. RequestDispatcher dispatcher = getServletContex().getRequestDispatcher("/teacher.jsp");
  9. dispatcher.forward(request, response);
  10. }
  11. else
  12. {
  13. RequestDispatcher dispatcher = getServletContex().getRequestDispatcher("/admin.jsp");
  14. dispatcher.forward(request, response);
  15. }


PS: Please use hash sign "#" to insert any code into your post. It will keep code format as from IDE and post would not be so long. Thanx
Last edited by peter_budo; Jun 22nd, 2007 at 4:26 am.
Moderator
Featured Poster
Reputation Points: 2786
Solved Threads: 874
Code tags enforcer
peter_budo is offline Offline
6,659 posts
since Dec 2004
Jul 1st, 2007
0

Re: user authentication and authorization

Hi,
You can opt one more solution. Try putting user roles in your user table in database. Now when user will log into your system, check their role and populate it into bean. This way, user bean will always be having their associated role. Put this bean in session scope.

Now after login functionality simply redirect user to a common url using the same code as peter said.

Use a filter to authenticate user to access particular resource like your jsp & servlets. Because you have user bean in session you can always check its role and corresponding url that can be accessed by that particular user..

let me see if your problem is solved or not.
have a nice time
regards
sam.n
Reputation Points: 10
Solved Threads: 0
Newbie Poster
sam.n is offline Offline
2 posts
since Jul 2007
Oct 18th, 2010
0
Re: user authentication and authorization
Hi

I tried this code but am not logging in successfully, when i key in the username and pwd am getting an error called The requested resource not found. Please help me to solve this, its very urgent.

Thanks in advance
Lissy.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
lisy is offline Offline
4 posts
since Oct 2010
Oct 22nd, 2010
0
Re: user authentication and authorization
Which you tried and which code is not working?
Moderator
Featured Poster
Reputation Points: 2786
Solved Threads: 874
Code tags enforcer
peter_budo is offline Offline
6,659 posts
since Dec 2004

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in JSP Forum Timeline: JSP/Java/Tomcat Website Hacking
Next Thread in JSP Forum Timeline: The requested resource (Servlet AbcServlet is not available) is not available





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC