KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > dd > web > servlets > ClientLoginServlet


1 /*
2   * JBoss, Home of Professional Open Source
3   * Copyright 2005, JBoss Inc., and individual contributors as indicated
4   * by the @authors tag. See the copyright.txt in the distribution for a
5   * full listing of individual contributors.
6   *
7   * This is free software; you can redistribute it and/or modify it
8   * under the terms of the GNU Lesser General Public License as
9   * published by the Free Software Foundation; either version 2.1 of
10   * the License, or (at your option) any later version.
11   *
12   * This software is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * Lesser General Public License for more details.
16   *
17   * You should have received a copy of the GNU Lesser General Public
18   * License along with this software; if not, write to the Free
19   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21   */

22 package org.jboss.ejb3.test.dd.web.servlets;
23
24 import java.io.IOException JavaDoc;
25 import java.io.PrintWriter JavaDoc;
26 import java.security.Principal JavaDoc;
27 import javax.naming.InitialContext JavaDoc;
28 import javax.naming.NamingException JavaDoc;
29 import javax.servlet.ServletConfig JavaDoc;
30 import javax.servlet.ServletException JavaDoc;
31 import javax.servlet.http.HttpServlet JavaDoc;
32 import javax.servlet.http.HttpServletRequest JavaDoc;
33 import javax.servlet.http.HttpServletResponse JavaDoc;
34 import javax.security.auth.login.LoginContext JavaDoc;
35 import javax.security.auth.login.LoginException JavaDoc;
36
37 import org.jboss.security.auth.callback.UsernamePasswordHandler;
38 import org.jboss.ejb3.test.dd.web.interfaces.StatelessSession;
39
40 /** A servlet that performs a JAAS login to access a secure EJB.
41
42 @author Scott.Stark@jboss.org
43 @version $Revision: 37459 $
44 */

45 public class ClientLoginServlet extends HttpServlet JavaDoc
46 {
47     protected void processRequest(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response)
48         throws ServletException JavaDoc, IOException JavaDoc
49     {
50         LoginContext JavaDoc lc = null;
51         String JavaDoc echoMsg = null;
52         try
53         {
54             lc = doLogin("jduke", "theduke");
55             InitialContext JavaDoc ctx = new InitialContext JavaDoc();
56             StatelessSession bean = (StatelessSession)ctx.lookup("java:comp/env/ejb/SecuredEJB");
57             echoMsg = bean.echo("ClientLoginServlet called SecuredEJB.echo");
58         }
59         catch(LoginException JavaDoc e)
60         {
61             throw new ServletException JavaDoc("Failed to login to client-login domain as jduke", e);
62         }
63         catch(Exception JavaDoc e)
64         {
65             throw new ServletException JavaDoc("Failed to access SecuredEJB", e);
66         }
67         finally
68         {
69             if( lc != null )
70             {
71                 try
72                 {
73                     lc.logout();
74                 }
75                 catch(LoginException JavaDoc e)
76                 {
77                 }
78             }
79         }
80
81         response.setContentType("text/html");
82         PrintWriter JavaDoc out = response.getWriter();
83         out.println("<html>");
84         out.println("<head><title>ClientLoginServlet</title></head>");
85         out.println("<h1>ClientLoginServlet Accessed</h1>");
86         out.println("<body>Login as user=jduke succeeded.<br>SecuredEJB.echo returned:"+echoMsg+"</body>");
87         out.println("</html>");
88         out.close();
89     }
90
91     protected void doGet(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response)
92         throws ServletException JavaDoc, IOException JavaDoc
93     {
94         processRequest(request, response);
95     }
96
97     protected void doPost(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response)
98         throws ServletException JavaDoc, IOException JavaDoc
99     {
100         processRequest(request, response);
101     }
102
103     private LoginContext JavaDoc doLogin(String JavaDoc username, String JavaDoc password) throws LoginException JavaDoc
104     {
105         UsernamePasswordHandler handler = new UsernamePasswordHandler(username, password.toCharArray());
106         LoginContext JavaDoc lc = new LoginContext JavaDoc("client-login", handler);
107         lc.login();
108         return lc;
109     }
110 }
111
Popular Tags