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
 
package com.mes.dasSPCValueService;
 
/**
 * Please modify this class to meet your needs
 * This class is not complete
 */
 
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
 
/**
 * This class was generated by Apache CXF 3.3.4
 * 2021-10-21T15:45:13.689+08:00
 * Generated source version: 3.3.4
 *
 */
public final class IQualityData_IQualityDataPort_Client {
 
    private static final QName SERVICE_NAME = new QName("http://das.service.eihub.rockwell.com/", "IQualityDataService");
 
    private IQualityData_IQualityDataPort_Client() {
    }
 
    public static void main(String args[]) throws Exception {
        URL wsdlURL = IQualityDataService.WSDL_LOCATION;
        if (args.length > 0 && args[0] != null && !"".equals(args[0])) {
            File wsdlFile = new File(args[0]);
            try {
                if (wsdlFile.exists()) {
                    wsdlURL = wsdlFile.toURI().toURL();
                } else {
                    wsdlURL = new URL(args[0]);
                }
            } catch (MalformedURLException e) {
                e.printStackTrace();
            }
        }
 
        IQualityDataService ss = new IQualityDataService(wsdlURL, SERVICE_NAME);
        IQualityData port = ss.getIQualityDataPort();
 
        {
        System.out.println("Invoking receiveDasSPCValue...");
        String _receiveDasSPCValue_qualitydata = "";
        String _receiveDasSPCValue__return = port.receiveDasSPCValue(_receiveDasSPCValue_qualitydata);
        System.out.println("receiveDasSPCValue.result=" + _receiveDasSPCValue__return);
 
 
        }
        {
        System.out.println("Invoking receivePRValue...");
        String _receivePRValue_prData = "";
        String _receivePRValue__return = port.receivePRValue(_receivePRValue_prData);
        System.out.println("receivePRValue.result=" + _receivePRValue__return);
 
 
        }
 
        System.exit(0);
    }
 
}