示例#1
0
        public DoExpressCheckoutPaymentResponse SendPayPalDoExpressCheckoutPaymentRequest(ApplicationCart cart, string token, string payerId)
        {
            try
            {
                WebUILogging.LogMessage("SendPayPalDoExpressCheckoutPaymentRequest");
                DoExpressCheckoutPaymentResponse response = _payPalTransactionRegistrar.SendDoExpressCheckoutPayment(token, payerId, cart.Currency, cart.TotalPrice);

                // Add a PayPal transaction record
                DAL.PayPalTransaction transaction = new DAL.PayPalTransaction
                {
                    RequestId = response.RequestId,
                    TrackingReference = cart.Id.ToString(),
                    RequestTime = DateTime.Now,
                    RequestStatus = response.ResponseStatus.ToString(),
                    TimeStamp = response.TIMESTAMP,
                    RequestError = response.ErrorToString,
                    Token = response.TOKEN,
                    RequestData = response.ToString,
                    PaymentTransactionId = response.PaymentTransactionId,
                    PaymentError = response.PaymentErrorToString,
                };

                // Store this transaction in your Database
                KJGarmentsWeb.DAL.peakzartEntities storedb = new KJGarmentsWeb.DAL.peakzartEntities();
                storedb.PayPalTransactions.Add(transaction);
                // Store this transaction in your Database
                storedb.SaveChanges();

                return response;
            }
            catch (Exception ex)
            {
                WebUILogging.LogException(ex.Message, ex);
            }
            return null;
        }
示例#2
0
        public GetExpressCheckoutDetailsResponse SendPayPalGetExpressCheckoutDetailsRequest(string token)
        {
            try
            {
                WebUILogging.LogMessage("SendPayPalGetExpressCheckoutDetailsRequest");
                GetExpressCheckoutDetailsResponse response = _payPalTransactionRegistrar.SendGetExpressCheckoutDetails(token);

                // Add a PayPal transaction record
               DAL.PayPalTransaction transaction = new DAL.PayPalTransaction
                {
                    RequestId = response.RequestId,
                    TrackingReference = response.TrackingReference,
                    RequestTime = DateTime.Now,
                    RequestStatus = response.ResponseStatus.ToString(),
                    TimeStamp = response.TIMESTAMP,
                    RequestError = response.ErrorToString,
                    Token = response.TOKEN,
                    PayerId = response.PAYERID,
                    RequestData = response.ToString,
                };

                // Store this transaction in your Database
               KJGarmentsWeb.DAL.peakzartEntities storedb = new KJGarmentsWeb.DAL.peakzartEntities();
                storedb.PayPalTransactions.Add(transaction);

                DAL.SHIPDETAIL shipdetails = new DAL.SHIPDETAIL
                {

                    TrackingReference = response.TrackingReference,
                    SHIPTONAME = response.PAYMENTREQUEST_0_SHIPTONAME,
                    SHIPTOSTREET = response.PAYMENTREQUEST_0_SHIPTOSTREET,
                    SHIPTOCITY = response.PAYMENTREQUEST_0_SHIPTOCITY,
                    SHIPTOSTATE = response.PAYMENTREQUEST_0_SHIPTOSTATE,
                    SHIPTOCOUNTRYCODE = response.PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE,
                    SHIPTOZIP = response.PAYMENTREQUEST_0_SHIPTOZIP

                };
                storedb.SHIPDETAILS.Add(shipdetails);
                // Store this transaction in your Database
                storedb.SaveChanges();

                return response;
            }
            catch (Exception ex)
            {
                WebUILogging.LogException(ex.Message, ex);
            }
            return null;
        }
示例#3
0
        public SetExpressCheckoutResponse SendPayPalSetExpressCheckoutRequest(ApplicationCart cart, string serverURL, string userEmail = null)
        {
            try
            {
                WebUILogging.LogMessage("SendPayPalSetExpressCheckoutRequest");

                // Optional handling of cart items: If there is only a single item being sold we don't need a list of expressCheckoutItems
                // However if you're selling a single item as a sale consider also adding it as an ExpressCheckoutItem as it looks better once you get to PayPal's site
                // Note: ExpressCheckoutItems are currently NOT stored by PayPal against the sale in the users order history so you need to keep your own records of what items were in a cart
                List<ExpressCheckoutItem> expressCheckoutItems = null;
                if (cart.Items != null)
                {
                    expressCheckoutItems = new List<ExpressCheckoutItem>();
                    foreach (ApplicationCartItem item in cart.Items)
                        expressCheckoutItems.Add(new ExpressCheckoutItem(item.Quantity, item.Price, item.Name, item.Description));
                }

                SetExpressCheckoutResponse response = _payPalTransactionRegistrar.SendSetExpressCheckout(cart.Currency, cart.TotalPrice, cart.PurchaseDescription, cart.Id.ToString(), serverURL, expressCheckoutItems, userEmail);

                // Add a PayPal transaction record
                DAL.PayPalTransaction transaction = new DAL.PayPalTransaction
                {
                    RequestId = response.RequestId,
                    TrackingReference = cart.Id.ToString(),
                    RequestTime = DateTime.Now,
                    RequestStatus = response.ResponseStatus.ToString(),
                    TimeStamp = response.TIMESTAMP,
                    RequestError = response.ErrorToString,
                    Token = response.TOKEN

                };
                KJGarmentsWeb.DAL.peakzartEntities storedb = new KJGarmentsWeb.DAL.peakzartEntities();
                storedb.PayPalTransactions.Add(transaction);

                // Store this transaction in your Database
                storedb.SaveChanges();

                return response;
            }
            catch (Exception ex)
            {
                WebUILogging.LogException(ex.Message, ex);
            }
            return null;
        }