コード例 #1
0
        public void Process(ref MessageTransaction trans, SegmentImpl parent, RemoveDepartureDoc p)
        {
            StringBuilder error = new StringBuilder();

            if (p == null)
            {
                // No data is available - abort
                throw new NullReferenceException("Failed to process message " + p.GetType() + ". Message structure is empty (null).");
            }

            fStmt.Transaction = trans.Transaction;

            (fStmt.Parameters["MSG_IN_ID"] as IDbDataParameter).Value = StringValue(trans.MsgInId);

            if (p.OPCODE != null)
            {
                if (p.OPCODE.Length > 1)
                {
                    error.AppendLine("Value for RemoveDepartureDoc.OPCODE too long, max 1 chars");
                }

                if (p.OPCODE.Length == 0)
                {
                    error.AppendLine("Zero length for mandatory parameter RemoveDepartureDoc.OPCODE not allowed");
                }

                (fStmt.Parameters["OPCODE"] as IDbDataParameter).Value = p.OPCODE;
            }
            else
            {
                error.AppendLine("Null value for mandatory parameter RemoveDepartureDoc.OPCODE not allowed");
            }


            if (p.DepartureIdentity != null)
            {
                if (p.DepartureIdentity.Length > 35)
                {
                    error.AppendLine("Value for RemoveDepartureDoc.DepartureIdentity too long, max 35 chars");
                }

                (fStmt.Parameters["DepartureIdentity"] as IDbDataParameter).Value = p.DepartureIdentity;
            }
            else
            {
                (fStmt.Parameters["DepartureIdentity"] as IDbDataParameter).Value = DBNull.Value;
            }

            if (error.Length > 0)
            {
                throw (new Exception(error.ToString()));
            }

            trans.TransSeq++;

            fStmt.ExecuteNonQuery();
        }
コード例 #2
0
        public void RemoveDeparture(string CommPartnerId, string TransactionId, RemoveDepartureDoc aRemoveDepartureDoc)
        {
            EnterProc();

            RemoveDepartureInsert aRemoveDepartureHandler;

            try
            {
                MessageTransaction mt = BeginWebmethod(CommPartnerId, TransactionId, "REM_DEP");

                try
                {
                    aRemoveDepartureHandler = new RemoveDepartureInsert(this);
                }
                catch (Exception e)
                {
                    Exception InternalError = new Exception("InternalError: Building insert handler", e);
                    throw (InternalError);
                }

                try
                {
                    if (aRemoveDepartureDoc == null)
                    {
                        Exception InternalError = new Exception("DataError: Root object cannot be null");
                        throw (InternalError);
                    }
                    aRemoveDepartureHandler.Process(ref mt, null, aRemoveDepartureDoc);
                    GetDataBase().Commit();
                }
                catch (Exception e)
                {
                    try
                    {
                        GetDataBase().Rollback();
                    }
                    catch (Exception)
                    {}
                    Exception InternalError = new Exception("DataError: Error processing data", e);
                    throw (InternalError);
                }
            }

            finally
            {
                EndWebmethod();
            }

            ExitProc();

            return;
        }