package com.fwms;
import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceFeature;
import javax.xml.ws.Service;
/**
* This class was generated by Apache CXF 3.3.4
* 2021-08-05T20:31:09.815+08:00
* Generated source version: 3.3.4
*
*/
@WebServiceClient(name = "MES_FL",
wsdlLocation = "http://10.39.185.130:8999/MES_FL.asmx?WSDL",
targetNamespace = "http://tempuri.org/")
public class MESFL extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("http://tempuri.org/", "MES_FL");
public final static QName MESFLSoap = new QName("http://tempuri.org/", "MES_FLSoap");
public final static QName MESFLSoap12 = new QName("http://tempuri.org/", "MES_FLSoap12");
static {
URL url = null;
try {
url = new URL("http://10.39.185.130:8999/MES_FL.asmx?WSDL");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(MESFL.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "http://10.39.185.130:8999/MES_FL.asmx?WSDL");
}
WSDL_LOCATION = url;
}
public MESFL(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public MESFL(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public MESFL() {
super(WSDL_LOCATION, SERVICE);
}
public MESFL(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
public MESFL(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
public MESFL(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns MESFLSoap
*/
@WebEndpoint(name = "MES_FLSoap")
public MESFLSoap getMESFLSoap() {
return super.getPort(MESFLSoap, MESFLSoap.class);
}
/**
*
* @param features
* A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values.
* @return
* returns MESFLSoap
*/
@WebEndpoint(name = "MES_FLSoap")
public MESFLSoap getMESFLSoap(WebServiceFeature... features) {
return super.getPort(MESFLSoap, MESFLSoap.class, features);
}
/**
*
* @return
* returns MESFLSoap
*/
@WebEndpoint(name = "MES_FLSoap12")
public MESFLSoap getMESFLSoap12() {
return super.getPort(MESFLSoap12, MESFLSoap.class);
}
/**
*
* @param features
* A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values.
* @return
* returns MESFLSoap
*/
@WebEndpoint(name = "MES_FLSoap12")
public MESFLSoap getMESFLSoap12(WebServiceFeature... features) {
return super.getPort(MESFLSoap12, MESFLSoap.class, features);
}
}