|  | /* | 
|  | * Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. | 
|  | * | 
|  | * This program and the accompanying materials are made available under the | 
|  | * terms of the Eclipse Public License v. 2.0, which is available at | 
|  | * http://www.eclipse.org/legal/epl-2.0. | 
|  | * | 
|  | * This Source Code may also be made available under the following Secondary | 
|  | * Licenses when the conditions for such availability set forth in the | 
|  | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | 
|  | * version 2 with the GNU Classpath Exception, which is available at | 
|  | * https://www.gnu.org/software/classpath/license.html. | 
|  | * | 
|  | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | 
|  | */ | 
|  |  | 
|  | /* | 
|  | * Client.java | 
|  | * | 
|  | * Created on February 21, 2003, 3:20 PM | 
|  | */ | 
|  |  | 
|  | import javax.servlet.*; | 
|  | import javax.servlet.http.*; | 
|  | import javax.naming.*; | 
|  | import javax.rmi.PortableRemoteObject; | 
|  |  | 
|  | import com.sun.ejte.ccl.reporter.SimpleReporterAdapter; | 
|  |  | 
|  | /** | 
|  | * | 
|  | * @author  mvatkina | 
|  | * @version | 
|  | */ | 
|  | public class Client { | 
|  |  | 
|  | private static SimpleReporterAdapter stat = | 
|  | new SimpleReporterAdapter("appserv-tests"); | 
|  |  | 
|  | public static void main(String[] args) { | 
|  |  | 
|  | try { | 
|  | System.out.println("START"); | 
|  |  | 
|  | stat.addDescription("unknownpkVC"); | 
|  |  | 
|  | Context initial = new InitialContext(); | 
|  | Object objref = initial.lookup("java:comp/env/ejb/UNPK2"); | 
|  | unknownpk.A2Home a2home = (unknownpk.A2Home)PortableRemoteObject.narrow(objref, unknownpk.A2Home.class); | 
|  |  | 
|  | unknownpk.A2 a2bean = a2home.create("A2"); | 
|  | Object pk2 = a2bean.getPrimaryKey(); | 
|  | System.out.println("CREATED 2.x WITH PK: " + pk2); | 
|  | System.out.println("CREATED 2.x: " + a2bean.getName()); | 
|  |  | 
|  | a2bean = a2home.findByPrimaryKey(pk2); | 
|  | System.out.println("FOUND 2.x: " + a2bean.getName()); | 
|  |  | 
|  | objref = initial.lookup("java:comp/env/ejb/UNPK1"); | 
|  | unknownpk.A1Home a1home = (unknownpk.A1Home)PortableRemoteObject.narrow(objref, unknownpk.A1Home.class); | 
|  |  | 
|  | unknownpk.A1 a1bean = a1home.create("A1"); | 
|  | Object pk1 = a1bean.getPrimaryKey(); | 
|  | System.out.println("CREATED 1.1 WITH PK: " + pk1); | 
|  | System.out.println("CREATED 1.1: " + a1bean.getName()); | 
|  |  | 
|  | a1bean = a1home.findByPrimaryKey(pk1); | 
|  | System.out.println("FOUND 1.1: " + a1bean.getName()); | 
|  |  | 
|  | stat.addStatus("ejbclient unknownpkVC", stat.PASS); | 
|  | System.out.println("FINISH"); | 
|  |  | 
|  | } catch (Exception ex) { | 
|  | System.err.println("Caught an exception:"); | 
|  | ex.printStackTrace(); | 
|  | stat.addStatus("ejbclient unknownpkVC", stat.FAIL); | 
|  | } | 
|  |  | 
|  | stat.printSummary("unknownpkVC"); | 
|  | } | 
|  |  | 
|  | } |