|
Java EE 6 example source code file (HelloService.java)
The Java EE 6 HelloService.java source codepackage endpoint; import java.net.MalformedURLException; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.ws.Service; import javax.xml.ws.WebEndpoint; import javax.xml.ws.WebServiceClient; import javax.xml.ws.WebServiceException; import javax.xml.ws.WebServiceFeature; /** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.2-hudson-735- * Generated source version: 2.2 * */ @WebServiceClient(name = "HelloService", targetNamespace = "http://endpoint/", wsdlLocation = "http://localhost:8080/hello-jaxws2.2/HelloService?WSDL") public class HelloService extends Service { private final static URL HELLOSERVICE_WSDL_LOCATION; private final static WebServiceException HELLOSERVICE_EXCEPTION; private final static QName HELLOSERVICE_QNAME = new QName("http://endpoint/", "HelloService"); static { URL url = null; WebServiceException e = null; try { url = new URL("http://localhost:8080/hello-jaxws2.2/HelloService?WSDL"); } catch (MalformedURLException ex) { e = new WebServiceException(ex); } HELLOSERVICE_WSDL_LOCATION = url; HELLOSERVICE_EXCEPTION = e; } public HelloService() { super(__getWsdlLocation(), HELLOSERVICE_QNAME); } public HelloService(WebServiceFeature... features) { super(__getWsdlLocation(), HELLOSERVICE_QNAME, features); } public HelloService(URL wsdlLocation) { super(wsdlLocation, HELLOSERVICE_QNAME); } public HelloService(URL wsdlLocation, WebServiceFeature... features) { super(wsdlLocation, HELLOSERVICE_QNAME, features); } public HelloService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public HelloService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) { super(wsdlLocation, serviceName, features); } /** * * @return * returns Hello */ @WebEndpoint(name = "HelloPort") public Hello getHelloPort() { return super.getPort(new QName("http://endpoint/", "HelloPort"), Hello.class); } /** * * @param features * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features parameter will have their default values. * @return * returns Hello */ @WebEndpoint(name = "HelloPort") public Hello getHelloPort(WebServiceFeature... features) { return super.getPort(new QName("http://endpoint/", "HelloPort"), Hello.class, features); } private static URL __getWsdlLocation() { if (HELLOSERVICE_EXCEPTION!= null) { throw HELLOSERVICE_EXCEPTION; } return HELLOSERVICE_WSDL_LOCATION; } } Other Java EE 6 examples (source code examples)Here is a short list of links related to this Java EE 6 HelloService.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.