zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.mes.dasVisualInspectionResultService;
 
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
 * 2020-04-24T10:04:07.938+08:00
 * Generated source version: 3.3.4
 *
 */
@WebServiceClient(name = "IVisualInspectionService",
                  wsdlLocation = "http://10.39.186.37:8081/GYEIHUB/dasVisualInspectionResultService?wsdl",
                  targetNamespace = "http://das.service.eihub.rockwell.com/")
public class IVisualInspectionService extends Service {
 
    public final static URL WSDL_LOCATION;
 
    public final static QName SERVICE = new QName("http://das.service.eihub.rockwell.com/", "IVisualInspectionService");
    public final static QName IVisualInspectionPort = new QName("http://das.service.eihub.rockwell.com/", "IVisualInspectionPort");
    static {
        URL url = null;
        try {
            url = new URL("http://10.39.186.37:8081/GYEIHUB/dasVisualInspectionResultService?wsdl");
        } catch (MalformedURLException e) {
            java.util.logging.Logger.getLogger(IVisualInspectionService.class.getName())
                .log(java.util.logging.Level.INFO,
                     "Can not initialize the default wsdl from {0}", "http://10.39.186.37:8081/GYEIHUB/dasVisualInspectionResultService?wsdl");
        }
        WSDL_LOCATION = url;
    }
 
    public IVisualInspectionService(URL wsdlLocation) {
        super(wsdlLocation, SERVICE);
    }
 
    public IVisualInspectionService(URL wsdlLocation, QName serviceName) {
        super(wsdlLocation, serviceName);
    }
 
    public IVisualInspectionService() {
        super(WSDL_LOCATION, SERVICE);
    }
 
    public IVisualInspectionService(WebServiceFeature ... features) {
        super(WSDL_LOCATION, SERVICE, features);
    }
 
    public IVisualInspectionService(URL wsdlLocation, WebServiceFeature ... features) {
        super(wsdlLocation, SERVICE, features);
    }
 
    public IVisualInspectionService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
        super(wsdlLocation, serviceName, features);
    }
 
 
 
 
    /**
     *
     * @return
     *     returns IVisualInspection
     */
    @WebEndpoint(name = "IVisualInspectionPort")
    public IVisualInspection getIVisualInspectionPort() {
        return super.getPort(IVisualInspectionPort, IVisualInspection.class);
    }
 
    /**
     *
     * @param features
     *     A list of {@link WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
     * @return
     *     returns IVisualInspection
     */
    @WebEndpoint(name = "IVisualInspectionPort")
    public IVisualInspection getIVisualInspectionPort(WebServiceFeature... features) {
        return super.getPort(IVisualInspectionPort, IVisualInspection.class, features);
    }
 
}