| /* |
| * Copyright (c) 2017, 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 |
| */ |
| |
| package myclient; |
| |
| import javax.naming.*; |
| import javax.xml.rpc.Stub; |
| import com.sun.ejte.ccl.reporter.SimpleReporterAdapter; |
| |
| public class SOAPEjbConsumerNonHttpBC { |
| private double balance = 300.00; |
| private double period = 3.5; |
| |
| private static SimpleReporterAdapter status = new SimpleReporterAdapter(); |
| |
| private static String testId = "jbi-serviceengine/jax-rpc/provider-oneway"; |
| |
| public SOAPEjbConsumerNonHttpBC() { |
| status.addDescription(testId); |
| } |
| |
| public static void main (String[] args) { |
| |
| SOAPEjbConsumerNonHttpBC client = new SOAPEjbConsumerNonHttpBC(); |
| |
| client.doTest(); |
| status.printSummary(testId); |
| } |
| |
| private void doTest() { |
| String targetEndpointAddress = |
| "http://localhost:8080/soap/web/findinterest"; |
| |
| try { |
| Context ic = new InitialContext(); |
| FindInterest findIntrService = (FindInterest) |
| ic.lookup("java:comp/env/service/FindInterest"); |
| |
| InterestIF interestIFPort = findIntrService.getInterestIFPort(); |
| |
| ((Stub)interestIFPort)._setProperty (Stub.ENDPOINT_ADDRESS_PROPERTY, targetEndpointAddress); |
| |
| interestIFPort.calculateInterest(balance, period); |
| |
| status.addStatus(testId + "1 : EJB Endpoint Test", status.PASS); |
| |
| } catch (Exception ex) { |
| status.addStatus(testId + "1 : EJB Endpoint Test", status.FAIL); |
| System.out.println("findintr client failed"); |
| ex.printStackTrace(); |
| } |
| } |
| } |