Example #1
0
        public void findAllMeciWithTickets_Process(int seqid, TProtocol iprot, TProtocol oprot)
        {
            findAllMeciWithTickets_args args = new findAllMeciWithTickets_args();

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

            try
            {
                result.Success = iface_.findAllMeciWithTickets();
                oprot.WriteMessageBegin(new TMessage("findAllMeciWithTickets", TMessageType.Reply, seqid));
                result.Write(oprot);
            }
            catch (TTransportException)
            {
                throw;
            }
            catch (Exception ex)
            {
                Console.Error.WriteLine("Error occurred in processor:");
                Console.Error.WriteLine(ex.ToString());
                TApplicationException x = new TApplicationException(TApplicationException.ExceptionType.InternalError, " Internal error.");
                oprot.WriteMessageBegin(new TMessage("findAllMeciWithTickets", TMessageType.Exception, seqid));
                x.Write(oprot);
            }
            oprot.WriteMessageEnd();
            oprot.Transport.Flush();
        }
Example #2
0
        public List <MeciDTO> recv_findAllMeciWithTickets()
        {
            TMessage msg = iprot_.ReadMessageBegin();

            if (msg.Type == TMessageType.Exception)
            {
                TApplicationException x = TApplicationException.Read(iprot_);
                iprot_.ReadMessageEnd();
                throw x;
            }
            findAllMeciWithTickets_result result = new findAllMeciWithTickets_result();

            result.Read(iprot_);
            iprot_.ReadMessageEnd();
            if (result.__isset.success)
            {
                return(result.Success);
            }
            throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "findAllMeciWithTickets failed: unknown result");
        }