package trax.skp5; 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 = "SkpPortTypeService", targetNamespace = "http://traxelektronik.pl/trax/ws/protocol", wsdlLocation = "file:/X:/ARTIC3/applications/etdserver/wsdl/skpservice.wsdl") public class SkpPortTypeService extends Service { private final static URL SKPPORTTYPESERVICE_WSDL_LOCATION; private final static WebServiceException SKPPORTTYPESERVICE_EXCEPTION; private final static QName SKPPORTTYPESERVICE_QNAME = new QName("http://traxelektronik.pl/trax/ws/protocol", "SkpPortTypeService"); static { URL url = null; WebServiceException e = null; try { url = new URL("file:/X:/ARTIC3/applications/etdserver/wsdl/skpservice.wsdl"); } catch (MalformedURLException ex) { e = new WebServiceException(ex); } SKPPORTTYPESERVICE_WSDL_LOCATION = url; SKPPORTTYPESERVICE_EXCEPTION = e; } public SkpPortTypeService() { super(__getWsdlLocation(), SKPPORTTYPESERVICE_QNAME); } public SkpPortTypeService(WebServiceFeature... features) { super(__getWsdlLocation(), SKPPORTTYPESERVICE_QNAME, features); } public SkpPortTypeService(URL wsdlLocation) { super(wsdlLocation, SKPPORTTYPESERVICE_QNAME); } public SkpPortTypeService(URL wsdlLocation, WebServiceFeature... features) { super(wsdlLocation, SKPPORTTYPESERVICE_QNAME, features); } public SkpPortTypeService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public SkpPortTypeService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) { super(wsdlLocation, serviceName, features); } /** * * @return * returns SkpPortType */ @WebEndpoint(name = "SkpPortType") public SkpPortType getSkpPortType() { return super.getPort(new QName("http://traxelektronik.pl/trax/ws/protocol", "SkpPortType"), SkpPortType.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 SkpPortType */ @WebEndpoint(name = "SkpPortType") public SkpPortType getSkpPortType(WebServiceFeature... features) { return super.getPort(new QName("http://traxelektronik.pl/trax/ws/protocol", "SkpPortType"), SkpPortType.class, features); } private static URL __getWsdlLocation() { if (SKPPORTTYPESERVICE_EXCEPTION!= null) { throw SKPPORTTYPESERVICE_EXCEPTION; } return SKPPORTTYPESERVICE_WSDL_LOCATION; } }