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