Exemple #1
0
            public void getEvents_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                getEvents_args args = new getEvents_args();

                args.Read(iprot);
                iprot.ReadMessageEnd();
                getEvents_result result = new getEvents_result();

                try {
                    result.Success = iface_.getEvents(args.Input, args.Doctate, args.Session);
                } catch (NlpException ex) {
                    result.Ex = ex;
                } catch (SessionException se) {
                    result.Se = se;
                }
                oprot.WriteMessageBegin(new TMessage("getEvents", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }
 public void getEvents_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getEvents_args args = new getEvents_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getEvents_result result = new getEvents_result();
   try {
     result.Success = iface_.getEvents(args.Input, args.Doctate, args.Session);
   } catch (NlpException ex) {
     result.Ex = ex;
   } catch (SessionException se) {
     result.Se = se;
   }
   oprot.WriteMessageBegin(new TMessage("getEvents", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }