blob: d93e64153f846e9bbe7cffbe7599b55715ff48af [file] [log] [blame]
/*
* 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 wls_dd.service_endpoint_address.client;
import com.sun.ejte.ccl.reporter.SimpleReporterAdapter;
import jakarta.xml.ws.WebServiceRef;
/**
* @author Rama Pulavarthi
*/
public class Client {
private static SimpleReporterAdapter stat =
new SimpleReporterAdapter("appserv-tests");
@WebServiceRef
static AddNumbersImplService service;
public static void main(String[] args) {
stat.addDescription("wls_dd.service_endpoint_address");
Client client = new Client();
client.runTest();
stat.printSummary("wls_dd.service_endpoint_address");
}
public void runTest() {
try {
AddNumbersImpl port = service.getAddNumbersImplPort();
int ret = port.addNumbers(2222, 1234);
if (ret != (2222 + 1234)) {
System.out.println("Unexpected add result " + ret);
stat.addStatus("wls_dd.service_endpoint_address", stat.FAIL);
return;
}
System.out.println(ret);
stat.addStatus("wls_dd.service_endpoint_address", stat.PASS);
} catch (Exception e) {
e.printStackTrace();
stat.addStatus("wls_dd.service_endpoint_address", stat.FAIL);
}
}
}