package com.fwms; 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-08-05T20:31:09.807+08:00 * Generated source version: 3.3.4 * */ @WebService(targetNamespace = "http://tempuri.org/", name = "MES_FLSoap") @XmlSeeAlso({ObjectFactory.class}) public interface MESFLSoap { @WebMethod(operationName = "SCSendOrderStatus", action = "http://tempuri.org/SCSendOrderStatus") @RequestWrapper(localName = "SCSendOrderStatus", targetNamespace = "http://tempuri.org/", className = "com.fwms.SCSendOrderStatus") @ResponseWrapper(localName = "SCSendOrderStatusResponse", targetNamespace = "http://tempuri.org/", className = "com.fwms.SCSendOrderStatusResponse") @WebResult(name = "SCSendOrderStatusResult", targetNamespace = "http://tempuri.org/") public String scSendOrderStatus( @WebParam(name = "xmlData", targetNamespace = "http://tempuri.org/") String xmlData ); }