
de.extra_standard.namespace.webservice.Extra_Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of extra-outputplugin-ws Show documentation
Show all versions of extra-outputplugin-ws Show documentation
eXTra Outputplugin für Webservices
The newest version!
package de.extra_standard.namespace.webservice;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.logging.Logger;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceFeature;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.1.5-b03-
* Generated source version: 2.1
*
*/
@WebServiceClient(name = "extra", targetNamespace = "http://www.extra-standard.de/namespace/webservice", wsdlLocation = "file:/D:/LDaten/eclipse/extra/svn/java/components/extra-outputplugin-ws/src/main/wsdl/extra.wsdl")
public class Extra_Service
extends Service
{
private final static URL EXTRA_WSDL_LOCATION;
private final static Logger logger = Logger.getLogger(de.extra_standard.namespace.webservice.Extra_Service.class.getName());
static {
URL url = null;
try {
URL baseUrl;
baseUrl = de.extra_standard.namespace.webservice.Extra_Service.class.getResource(".");
url = new URL(baseUrl, "file:/D:/LDaten/eclipse/extra/svn/java/components/extra-outputplugin-ws/src/main/wsdl/extra.wsdl");
} catch (MalformedURLException e) {
logger.warning("Failed to create URL for the wsdl Location: 'file:/D:/LDaten/eclipse/extra/svn/java/components/extra-outputplugin-ws/src/main/wsdl/extra.wsdl', retrying as a local file");
logger.warning(e.getMessage());
}
EXTRA_WSDL_LOCATION = url;
}
public Extra_Service(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public Extra_Service() {
super(EXTRA_WSDL_LOCATION, new QName("http://www.extra-standard.de/namespace/webservice", "extra"));
}
/**
*
* @return
* returns Extra
*/
@WebEndpoint(name = "extraSOAP")
public Extra getExtraSOAP() {
return super.getPort(new QName("http://www.extra-standard.de/namespace/webservice", "extraSOAP"), Extra.class);
}
/**
*
* @param features
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features
parameter will have their default values.
* @return
* returns Extra
*/
@WebEndpoint(name = "extraSOAP")
public Extra getExtraSOAP(WebServiceFeature... features) {
return super.getPort(new QName("http://www.extra-standard.de/namespace/webservice", "extraSOAP"), Extra.class, features);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy