Exemplo n.º 1
0
        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());
        }
Exemplo n.º 2
0
        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;
            }
        }
Exemplo n.º 3
0
 public abstract void WIP_View_Factory_List(WIP_View_Factory_List_In_Tag View_Factory_List_In, ref WIP_View_Factory_List_Out_Tag View_Factory_List_Out);
Exemplo n.º 4
0
 public static bool WIP_View_Factory_List(WIP_View_Factory_List_In_Tag View_Factory_List_In, ref WIP_View_Factory_List_Out_Tag View_Factory_List_Out)
 {
     return(WIP_View_Factory_List("WIP_View_Factory_List", View_Factory_List_In, ref View_Factory_List_Out));
 }
Exemplo n.º 5
0
 public static void transform_WIP_View_Factory_List_In_Tag(StreamTransformer former, ref WIP_View_Factory_List_In_Tag source)
 {
     source.h_passport   = deleteNull(former.readMsgString());
     source.h_language   = former.readMsgChar();
     source.h_factory    = deleteNull(former.readMsgString());
     source.h_user_id    = deleteNull(former.readMsgString());
     source.h_password   = deleteNull(former.readMsgString());
     source.h_proc_step  = former.readMsgChar();
     source.next_factory = deleteNull(former.readMsgString());
 }
Exemplo n.º 6
0
 public static void serialize_WIP_View_Factory_List_In_Tag(StreamTransformer former, WIP_View_Factory_List_In_Tag target)
 {
     former.writeMsgString(withoutSpace(target.h_passport));
     former.writeMsgChar(target.h_language);
     former.writeMsgString(withoutSpace(target.h_factory));
     former.writeMsgString(withoutSpace(target.h_user_id));
     former.writeMsgString(withoutSpace(target.h_password));
     former.writeMsgChar(target.h_proc_step);
     former.writeMsgString(withoutSpace(target.next_factory));
 }