You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
623 B
Java
17 lines
623 B
Java
import javax.jws.WebMethod;
|
|
import javax.jws.WebParam;
|
|
import javax.jws.WebResult;
|
|
import javax.jws.WebService;
|
|
import javax.jws.soap.SOAPBinding;
|
|
|
|
|
|
@WebService(serviceName = "wsForDBSYService1",targetNamespace="",name="wsForDBSY1")
|
|
@SOAPBinding(style=SOAPBinding.Style.RPC,use=SOAPBinding.Use.ENCODED,parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
|
|
//@BindingType(value=javax.xml.ws.soap.SOAPBinding.SOAP11HTTP_BINDING)
|
|
public interface DzbzDBWbs {
|
|
@WebMethod(operationName = "PROCESSDBSY")
|
|
@WebResult(name="PROCESSDBSYReturn")
|
|
public String PROCESSDBSY(@WebParam(name = "DBSYINFO") String DBSYINFO);
|
|
|
|
}
|