whyclxw
2025-02-13 d62fa80f3d12a56ae60eeef45f07cea6477c2507
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.whyc.webService;
 
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.xml.ws.BindingType;
import javax.xml.ws.soap.SOAPBinding;
 
@WebService
@BindingType(SOAPBinding.SOAP12HTTP_BINDING)
public interface IMS_Service {
 
    @WebMethod
    String getKPIValue(String param);
 
    @WebMethod
    Integer getStatus(String param);
}