Package org.apache.notgeronimo.itests.naming.common

Examples of org.apache.notgeronimo.itests.naming.common.Test


* @version $Rev:  $ $Date:  $
*/
public class StatelessBean implements SessionBean {

    public void testWebService() {
        Test test = new Test();
        try {
            test.testWebServiceLookup();
        } catch (Exception e) {
            throw new EJBException(e);
        }

    }
View Full Code Here


     *                    thrown when there is a problem getting the writer
     */
    protected void doGet(HttpServletRequest request,
            HttpServletResponse response) throws IOException, ServletException {

        Test test = new Test();
        try {
//            test.testWebServiceLookup();
            test.testMEJBLookup();
        } catch (Exception e) {
            throw new ServletException(e);
        }

    }
View Full Code Here

            e.printStackTrace(System.out);
        }
    }

    public void testWebService() throws Exception {
        Test test = new Test();
        test.testWebServiceLookup();

    }
View Full Code Here

        test.testWebServiceLookup();

    }

    public void testResourceRefLookup() throws Exception {
        Test test = new Test();
        test.testResourceRefLookup();
    }
View Full Code Here

TOP

Related Classes of org.apache.notgeronimo.itests.naming.common.Test

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.