public void ImportDDIModel_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                ImportDDIModel_args args = new ImportDDIModel_args();

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

                try
                {
                    try
                    {
                        result.Success = iface_.ImportDDIModel(args.Path);
                    }
                    catch (TDDIValidationFailedException ValidationFailedException)
                    {
                        result.ValidationFailedException = ValidationFailedException;
                    }
                    oprot.WriteMessageBegin(new TMessage("ImportDDIModel", 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("ImportDDIModel", TMessageType.Exception, seqid));
                    x.Write(oprot);
                }
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }
            public TDDIAbstractODEPackage recv_ImportDDIModel()
            {
                TMessage msg = iprot_.ReadMessageBegin();

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

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