KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > security > servlets > EJBServlet


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.security.servlets;
23
24 import java.io.IOException JavaDoc;
25 import java.io.PrintWriter JavaDoc;
26 import java.net.URL JavaDoc;
27 import javax.naming.InitialContext JavaDoc;
28 import javax.naming.NamingException JavaDoc;
29 import javax.persistence.EntityManager;
30 import javax.servlet.ServletConfig JavaDoc;
31 import javax.servlet.ServletException JavaDoc;
32 import javax.servlet.http.HttpServlet JavaDoc;
33 import javax.servlet.http.HttpServletRequest JavaDoc;
34 import javax.servlet.http.HttpServletResponse JavaDoc;
35 import javax.transaction.UserTransaction JavaDoc;
36 import org.jboss.ejb3.test.security.JobDAO;
37 import org.jboss.logging.Logger;
38 import org.jboss.security.SecurityAssociation;
39 import org.jboss.security.SimplePrincipal;
40 import org.jboss.security.auth.callback.UsernamePasswordHandler;
41 import javax.security.auth.login.LoginContext JavaDoc;
42
43
44 /** A servlet that accesses an EJB and tests whether the call argument
45  is serialized.
46
47  @author Scott.Stark@jboss.org
48  @version $Revision: 39878 $
49  */

50 public class EJBServlet extends HttpServlet JavaDoc
51 {
52    private static final Logger log = Logger.getLogger(EJBServlet.class);
53    
54    public void init(ServletConfig JavaDoc config) throws ServletException JavaDoc
55    {
56    }
57    
58    protected void processRequest(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response)
59          throws ServletException JavaDoc, IOException JavaDoc
60    {
61       try
62       {
63          UsernamePasswordHandler handler = new UsernamePasswordHandler("scott", "echoman");
64          
65          LoginContext JavaDoc lc = new LoginContext JavaDoc("client-login", handler);
66          lc.login();
67          
68          InitialContext JavaDoc jndiContext = new InitialContext JavaDoc();
69          JobDAO bean = (JobDAO)jndiContext.lookup("JobDAOBean/local");
70          bean.foo();
71       } catch (Exception JavaDoc e)
72       {
73          e.printStackTrace();
74          throw new ServletException JavaDoc(e);
75       }
76
77    }
78
79    protected void doGet(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response)
80          throws ServletException JavaDoc, IOException JavaDoc
81    {
82       processRequest(request, response);
83    }
84
85    protected void doPost(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response)
86          throws ServletException JavaDoc, IOException JavaDoc
87    {
88       processRequest(request, response);
89    }
90 }
91
Popular Tags