Alejandro Acuña
2024-08-12 1876e65234c20209001178705cfa50d8f9ded67a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
 
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 <code>features</code> 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;
    }
 
}