You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
3.1 KiB
Java

2 years ago
package i2client;
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.6-1b01
* Generated source version: 2.2
*
*/
@WebServiceClient(name = "XydlServiceImplService", targetNamespace = "http://ws.busi.huatek.com/", wsdlLocation = "http://10.0.17.24:8084/busi-back-ws/service/XydlService?wsdl")
public class XydlServiceImplService
extends Service
{
private final static URL XYDLSERVICEIMPLSERVICE_WSDL_LOCATION;
private final static WebServiceException XYDLSERVICEIMPLSERVICE_EXCEPTION;
private final static QName XYDLSERVICEIMPLSERVICE_QNAME = new QName("http://ws.busi.huatek.com/", "XydlServiceImplService");
static {
URL url = null;
WebServiceException e = null;
try {
url = new URL("http://10.0.17.24:8084/busi-back-ws/service/XydlService?wsdl");
} catch (MalformedURLException ex) {
e = new WebServiceException(ex);
}
XYDLSERVICEIMPLSERVICE_WSDL_LOCATION = url;
XYDLSERVICEIMPLSERVICE_EXCEPTION = e;
}
public XydlServiceImplService() {
super(__getWsdlLocation(), XYDLSERVICEIMPLSERVICE_QNAME);
}
public XydlServiceImplService(WebServiceFeature... features) {
super(__getWsdlLocation(), XYDLSERVICEIMPLSERVICE_QNAME, features);
}
public XydlServiceImplService(URL wsdlLocation) {
super(wsdlLocation, XYDLSERVICEIMPLSERVICE_QNAME);
}
public XydlServiceImplService(URL wsdlLocation, WebServiceFeature... features) {
super(wsdlLocation, XYDLSERVICEIMPLSERVICE_QNAME, features);
}
public XydlServiceImplService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public XydlServiceImplService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns XydlService
*/
@WebEndpoint(name = "XydlServiceImplPort")
public XydlService getXydlServiceImplPort() {
return super.getPort(new QName("http://ws.busi.huatek.com/", "XydlServiceImplPort"), XydlService.class);
}
/**
*
* @param features
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
* @return
* returns XydlService
*/
@WebEndpoint(name = "XydlServiceImplPort")
public XydlService getXydlServiceImplPort(WebServiceFeature... features) {
return super.getPort(new QName("http://ws.busi.huatek.com/", "XydlServiceImplPort"), XydlService.class, features);
}
private static URL __getWsdlLocation() {
if (XYDLSERVICEIMPLSERVICE_EXCEPTION!= null) {
throw XYDLSERVICEIMPLSERVICE_EXCEPTION;
}
return XYDLSERVICEIMPLSERVICE_WSDL_LOCATION;
}
}