zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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 <code>features</code> 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 <code>features</code> 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);
    }
 
}