/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * https://oss.oracle.com/licenses/CDDL+GPL-1.1 * or LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ /* * Client.java * * Created on February 21, 2003, 3:20 PM */ package com.sun.s1asdev.ejb.ejbflush.client; import javax.servlet.*; import javax.servlet.http.*; import javax.naming.*; import javax.rmi.PortableRemoteObject; import com.sun.s1asdev.ejb.ejbflush.Test; import com.sun.s1asdev.ejb.ejbflush.TestHome; import com.sun.ejte.ccl.reporter.SimpleReporterAdapter; /** * * @author mvatkina * @version */ public class Client { private Test t; private static SimpleReporterAdapter stat = new SimpleReporterAdapter("appserv-tests"); public Client(String[] args) { try { Context initial = new InitialContext(); Object objref = initial.lookup("java:comp/env/ejb/T1"); TestHome thome = (TestHome)PortableRemoteObject.narrow(objref, TestHome.class); t = thome.create(); } catch( Exception ex ) { System.err.println("Client(): Caught an exception:"); ex.printStackTrace(); } } public static void main(String[] args) { try { System.out.println("START"); stat.addDescription("ejbFlush"); Client client = new Client(args); client.checkCmp11Bean(); client.checkCmp20Bean(); System.out.println("FINISH"); } catch (Exception ex) { System.err.println("Client.main():Caught an exception:"); ex.printStackTrace(); } stat.printSummary("ejbFlush"); } private void checkCmp11Bean() { try { t.testA1(); System.out.println("A1 OK"); } catch (Exception e) { e.printStackTrace(); System.out.println("A1 FAILED"); stat.addStatus("ejbclient checkCmp11Bean", stat.FAIL); return; } try { t.testA1WithFlush(); System.out.println("A1WithFlush OK"); } catch (Exception e) { System.out.println("A1 FAILED " + e.getMessage()); e.printStackTrace(); stat.addStatus("ejbclient checkCmp11Bean", stat.FAIL); return; } stat.addStatus("ejbclient checkCmp11Bean", stat.PASS); }//checkCmp11Bean() private void checkCmp20Bean() { try { t.testA2(); System.out.println("A2 OK"); } catch (Exception e) { System.out.println("A2 FAILED"); stat.addStatus("ejbclient checkCmp20Bean", stat.FAIL); return; } try { t.testA2(); System.out.println("A2 FAILED"); stat.addStatus("ejbclient checkCmp20Bean", stat.FAIL); return; } catch (Exception e) { Throwable t = e; boolean ok = false; while (t != null) { System.out.println("Nested: " + t); if (t instanceof java.sql.SQLException) { java.sql.SQLException se = (java.sql.SQLException) t; System.out.println("ErrorCode: " + se.getErrorCode()); System.out.println("SQLState: " + se.getSQLState()); java.sql.SQLException nse = se.getNextException(); if (nse != null) { System.out.println("Nested SQLException: " + nse); System.out.println("ErrorCode: " + nse.getErrorCode()); System.out.println("SQLState: " + nse.getSQLState()); } ok = true; } else { System.out.println("Not a java.sql.SQLException"); } t = t.getCause(); } if (ok) { System.out.println("A2 SQLException OK"); } else { System.out.println("A2 FAILED - no SQLException detected"); stat.addStatus("ejbclient checkCmp20Bean", stat.FAIL); } } try { t.testA2WithFlush(); System.out.println("A2WithFlush OK"); } catch (Exception e) { System.out.println("A2 FAILED " + e.getMessage()); e.printStackTrace(); stat.addStatus("ejbclient checkCmp20Bean", stat.FAIL); return; } stat.addStatus("ejbclient checkCmp20Bean", stat.PASS); }//checkCmp20Bean() }//Client{}