0

localhost から PAYPAL のサンドボックス (https://www.sandbox.paypal.com) にユーザーをリダイレクトすると、.aspx ページ (successful.aspx) に戻った後、セッションが失われるのはなぜですか?

たとえば、SESSION["tempUser"]、すべてのページで機能しますが、Successful.aspx ページでは機能しません。null を返します。このエラーに 2 週間取り組んでいますが、進行状況はありません。別のブラウザー、別のシステムでも試しましたが、コードを変更しました少しですが、何も役に立ちませんでした。1か月以上経ち、いくつかのフォームにいくつかの投稿をした後、Cookieでさえ同じ問題を抱えていても何も役に立ちませんでした。

リダイレクト ページのコード:

<body>
    <form id="form1" runat="server">
<div>
 <h4> Congrats <b> <%# Session["tempSubAdminName"]%>  </b>, Your basic informaton has been submitted , For full activation you need to pay via paypal. Please click the PayPal icon given below. </h4>
</div>
<div>
 <asp:HyperLink ID="homeBtnImage" runat="server" ImageUrl="~/btnPayPal.gif"
      NavigateUrl= "https://www.sandbox.paypal.com/us/cgi-bin/webscr?cmd=_xclick&business=smile2_1355775057_biz@yahoo.com&item_name=MemberShip&amount=20&currency=USD&return=http://127.0.0.1:57135/Online%20Recruitment%20System-Final/paymentSuccessful.aspx?emailAdmin='1234' &cancel_return=https://www.google.com/" >PayPal</asp:HyperLink>
</div>
<h6>Or if you don't have paypal account, click <asp:HyperLink ID="paypalSite" runat="server"
    NavigateUrl="https://www.sandbox.paypal.com/" >here</asp:HyperLink> </h6>
</form>

成功したらこの時代に戻る

</head>
 <body>
   <form id="form1" runat="server">
   <div>
     <h5> Dear <%# Session["tempSubAdmin"] %>, You have successfully registered ,   Please wait for the approval by admin. </h5>
</div>
</form>

4

2 に答える 2

0

私が実装した方法を説明しています。人によって異なる場合があります。

  1. まず、developer paypal apiでアカウントを作成する必要があります。アカウント。
  2. 次に、2 つのテスト アカウントを作成します。1 つはクライアント用、もう 1 つはビジネス (マーチャント) 用です。
  3. これらの値をweb.configファイルで宣言します。

     <appSettings>    
        <!--these keys are for Paypal-->
        <add key="paypalURL" value="https://www.sandbox.paypal.com" />
        <add key="paypalAccount" value="arshad_Mer_biz@gmail.com" />
        <add key="websiteUrl" value="http://www.yourstie.com" />
      </appSettings>
    
  4. Paypal変数の詳細については、それに応じてpaypal html変数を設定する必要があります

  5. button_clickイベントに次のコードを記述します。

    string redirectUrl = ConfigurationManager.AppSettings["paypalURL"]+"/cgi-bin/webscr?cmd=_xclick";
    string sellersEmail = "&business=";
    string buyersEmail = "&email=";
    string productName = "&item_name=";
    string amount = "&amount=";
    string shippingOption = "&no_shipping=";
    string noteOpton = "&no_note=";
    string returnUrl = "&return=";
    string cancelUrl = "&cancel_return=";
    string rmOption = "&rm=";
    string notifyUrl = "&notify_url=";
    string custom = "&custom=";
    
    // Merchant account
    sellersEmail += ConfigurationManager.AppSettings["paypalAccount"];
    
    //calling a method that will return current user email id.
    buyersEmail += GeneralClass.GetUserEmail();
    
    //optional value if you want to carry
    custom += GeneralClass.GetUseriD();
    
    productName += lblProdeutName.Text;
    amount +=lblAmount.Text ;
    
    shippingOption += "1";                      //1 means no shipping option;
    noteOpton += "1";                           //1 means no note option;
    rmOption += "1";                            
    
    returnUrl +=ConfigurationManager.AppSettings["websiteUrl"]+"/PaypalThankYou.aspx";
    cancelUrl +=ConfigurationManager.AppSettings["websiteUrl"] + "/PaypalCancel.aspx";
    notifyUrl += ConfigurationManager.AppSettings["websiteUrl"] + "/PaypalNotifyUrl.aspx";
    
    redirectUrl += sellersEmail + buyersEmail + productName + amount + shippingOption +    noteOpton + returnUrl + cancelUrl + notifyUrl + rmOption + custom;
    Response.Redirect(redirectUrl);
    

キャンセル ページ:- ユーザーが paypal からトランザクションをキャンセルすると、localhost でも機能します。
ありがとうページ: 支払い後、PayPal はページにリダイレクトされます。
通知 URL: IPN (即時支払い通知) と呼ばれることがあります。これは、ペイパルから値を取得する場所です。ホストされたページでのみ機能します。ローカルホストでは機能しません

Notifyurlページのコードに
これらを追加しますnamespaces

 using System.Net;
 using System.IO;
 using System.Text;
 using System.Collections.Specialized;

page_load

  protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
         //Post back to either sandbox or live
        string strURL =ConfigurationManager.AppSettings["paypalURL"]+ "/cgi-bin/webscr";

        HttpWebRequest req = (HttpWebRequest)WebRequest.Create(strURL);

        //Set values for the request back
        req.Method = "POST";
        req.ContentType = "application/x-www-form-urlencoded";
        byte[] param = Request.BinaryRead(HttpContext.Current.Request.ContentLength);
        string strRequest =Encoding.ASCII.GetString(param);
        string strResponse_copy = strRequest;  //Save a copy of the initial info sent by PayPal
        strRequest += "&cmd=_notify-validate";
        req.ContentLength = strRequest.Length;

        //for proxy
        //WebProxy proxy = new WebProxy(new Uri("http://url:port#"));
        //req.Proxy = proxy;
        //Send the request to PayPal and get the response

        StreamWriter streamOut = new StreamWriter(req.GetRequestStream(), System.Text.Encoding.ASCII);
        streamOut.Write(strRequest);
        streamOut.Close();
        StreamReader streamIn = new StreamReader(req.GetResponse().GetResponseStream());
        string strResponse = streamIn.ReadToEnd();
        streamIn.Close();

        if (strResponse == "VERIFIED")
        {
            //check the payment_status is Completed
            //check that txn_id has not been previously processed
            //check that receiver_email is your Primary PayPal email
            //check that payment_amount/payment_currency are correct
            //process payment
            // pull the values passed on the initial message from PayPal

            NameValueCollection these_argies = HttpUtility.ParseQueryString(strResponse_copy);

            string pay_stat = these_argies["payment_status"];

            //.
            //.  more args as needed look at the list from paypal IPN doc
            //.


            if (pay_stat.Equals("Completed"))
            {
            //inserting the database
                int intUserID;
                int.TryParse(these_argies["custom"],out intUserID);
                objUserEntity.UserID=intUserID;
                objPapalPayment.strTransactionID = these_argies["txn_id"];
                objPapalPayment.dblPaymentAmount = Convert.ToDouble(these_argies["payment_gross"]);
                objPapalPayment.strBuyerMail = these_argies["payer_email"];
                objPapalPayment.dtmDateAppliedOn = DateTime.Now;
                objPapalPayment.blnIsGlobalAdvertisement = true;
                objSubscription.blnIsPaid = false;
                objSubscription.blnSubscriptionWithHeld = true;
                objUserFunction.AddPaypalPayment(objUserEntity, objPapalPayment, objSubscription, enmSubscriptionType.Global);                         
            }


            // more checks needed here specially your account number and related stuff
        }
        else if (strResponse == "INVALID")
        {
            //log for manual investigation
        }
        else
        {
            //log response/ipn data for manual investigation
        }
        }
    }

次に、ローカルホストでどのようにデバッグしますか? 使用rm値 = 2; サンキュー ページの page_load イベントに同じコードを貼り付けます。それが動作します。

詳細については、http: //www.codeproject.com/Articles/42894/Introduction-to-PayPal-for-C-ASP-NET-developers
Paypal の変数とその使用方法を
ご覧ください 。

于 2012-12-30T19:51:44.647 に答える
0

これをローカルマシンでテストしていると思います。

リダイレクトする前に、Cookie ASP.NET_SessionId の値を確認してください。

次に、successful.aspx が呼び出された後に値を確認します。

Cookie が失われた場合: Paypal は Cookie を使用して何もできません。同じドメイン (locahost) でのみ変更できます。

Paypal なしでこれをテストします。successful.aspx にリダイレクトする単純なページを用意するだけです。Cookie が失われた場合は、非常に短いセッション タイムアウトが構成されているか、Cookie を削除するコードが実行されている可能性があります (global.asax を確認してください)。

于 2012-12-30T20:26:09.777 に答える