public void recv_WIP_View_Factory_List(string sRequest, ref string sReply) { byte[] outByt = FwxCmnFunction.UnPackMessage(sRequest); StreamTransformer former = new StreamTransformerImpl(outByt); WIP_View_Factory_List_In_Tag View_Factory_List_In = new WIP_View_Factory_List_In_Tag(); WIP_View_Factory_List_Out_Tag View_Factory_List_Out = new WIP_View_Factory_List_Out_Tag(); WIPType.transform_WIP_View_Factory_List_In_Tag(former, ref View_Factory_List_In); WIP_View_Factory_List(View_Factory_List_In, ref View_Factory_List_Out); /* Call User Procedure */ former = new StreamTransformerImpl(); WIPType.serialize_WIP_View_Factory_List_Out_Tag(former, View_Factory_List_Out); sReply = FwxCmnFunction.PackMessage(former.getBytes()); }
public static bool WIP_View_Factory_List(string FunctionName, WIP_View_Factory_List_In_Tag View_Factory_List_In, ref WIP_View_Factory_List_Out_Tag View_Factory_List_Out) { try { if (null == WIPUrl || WIPUrl.Trim().Equals("")) { throw new Exception("INVALID_URL"); } if (0 >= WIPTimeOut) { throw new Exception("INVALID_TIMEOUT"); } string sReplyMsg = null; string sSendMsg = null; byte[] aReplyData = null; SmartWebService oWebService = new SmartWebService(); StreamTransformer former = new StreamTransformerImpl(); oWebService.SetUrl(WIPUrl); oWebService.SetTimeOut(WIPTimeOut); WIPType.serialize_WIP_View_Factory_List_In_Tag(former, View_Factory_List_In); sSendMsg = FwxCmnFunction.PackMessage(former.getBytes()); oWebService.RequestReply(FunctionName, sSendMsg, ref sReplyMsg); aReplyData = FwxCmnFunction.UnPackMessage(sReplyMsg); former = new StreamTransformerImpl(aReplyData); WIPType.transform_WIP_View_Factory_List_Out_Tag(former, ref View_Factory_List_Out); return(true); } catch (Exception ex) { throw ex; } }