Example #1
0
        public void recv_SPL_View_Lot_List0(string sRequest, ref string sReply)
        {
            byte[]                     outByt            = FwxCmnFunction.UnPackMessage(sRequest);
            StreamTransformer          former            = new StreamTransformerImpl(outByt);
            SPL_View_Lot_List0_In_Tag  View_Lot_List_In  = new SPL_View_Lot_List0_In_Tag();
            SPL_View_Lot_List0_Out_Tag View_Lot_List_Out = new SPL_View_Lot_List0_Out_Tag();

            SPLType.transform_SPL_View_Lot_List0_In_Tag(former, ref View_Lot_List_In);
            SPL_View_Lot_List0(View_Lot_List_In, ref View_Lot_List_Out); /* Call User Procedure */

            former = new StreamTransformerImpl();
            SPLType.serialize_SPL_View_Lot_List0_Out_Tag(former, View_Lot_List_Out);

            sReply = FwxCmnFunction.PackMessage(former.getBytes());
        }
Example #2
0
        public static bool SPL_View_Lot_List0(string FunctionName, SPL_View_Lot_List0_In_Tag View_Lot_List_In, ref SPL_View_Lot_List0_Out_Tag View_Lot_List_Out)
        {
            try
            {
                if (null == SPLUrl || SPLUrl.Trim().Equals(""))
                {
                    throw new Exception("INVALID_URL");
                }

                if (0 >= SPLTimeOut)
                {
                    throw new Exception("INVALID_TIMEOUT");
                }

                string            sReplyMsg   = null;
                string            sSendMsg    = null;
                byte[]            aReplyData  = null;
                SmartWebService   oWebService = new SmartWebService();
                StreamTransformer former      = new StreamTransformerImpl();

                oWebService.SetUrl(SPLUrl);
                oWebService.SetTimeOut(SPLTimeOut);

                SPLType.serialize_SPL_View_Lot_List0_In_Tag(former, View_Lot_List_In);

                sSendMsg = FwxCmnFunction.PackMessage(former.getBytes());
                oWebService.RequestReply(FunctionName, sSendMsg, ref sReplyMsg);
                aReplyData = FwxCmnFunction.UnPackMessage(sReplyMsg);

                former = new StreamTransformerImpl(aReplyData);
                SPLType.transform_SPL_View_Lot_List0_Out_Tag(former, ref View_Lot_List_Out);

                return(true);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }