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); }