Example #1
0
        /***
         *
         * Will load the table from XML files
         *
         * ****/
        public ActionResult LoadTable()
        {
            List<PayModel> paymodels = new XMLLoads().GetPayments();

            MVCAppDAL.writeEventMsg(paymodels);

            return View(paymodels);
        }
Example #2
0
        public ActionResult SendWCF(int id)
        {
            var user = new XMLLoads().GetPayments().Where(p => p.Id == id).FirstOrDefault();

            var message = new XMLLoads().GetMessages().Where(p => p.EventId == user.EventId).FirstOrDefault();

            ServiceReference1.WcfServiceOf_PayMessage_ErrorCodesClient client1 =
                new ServiceReference1.WcfServiceOf_PayMessage_ErrorCodesClient();

            ErrorCodes returnCode = client1.Process(message);

            user.errorCode = returnCode;

            return View(user);
        }
Example #3
0
        public ActionResult SendSaga(int id)
        {
            //Get the GUID from the available XML files fro, the id passed from the page
            var user = new XMLLoads().GetPayments().Where(p => p.Id == id).FirstOrDefault();
            var message = new XMLLoads().GetMessages().Where(p => p.EventId == user.EventId).FirstOrDefault();

            // Create the send
            SendCommand command = new SendCommand();
            command.RequestId = message.EventId;
            command.state = StateCodes.SentMySaga;

            // Change the state in the EF DAL
            MVCAppDAL dal = new MVCAppDAL();
            dal.changeState(command.RequestId, command.state);

            // Send the command on the Bus
            MvcApplication.Bus.Send(command);

            return View(user);
        }
Example #4
0
 public ActionResult Send(int id)
 {
     var user = new XMLLoads().GetPayments().Where(p => p.Id == id).FirstOrDefault();
     return View(user);
 }