Note that there are some explanatory texts on larger screens.

plurals
  1. POPaypal Mass Payment API (Does Not Receive Response From paypal) with Asp.net using
    primarykey
    data
    text
    <p><img src="https://i.stack.imgur.com/5ipZa.png" alt="enter image description here">I created MassPayment using MassPaymentAPI But I got Error In this Method</p> <p>Input For Methods :::</p> <pre><code>url="https://api.sandbox.paypal.com/nvp" postdata="METHOD=MassPay&amp;EMAILSUBJECT=You+have+money!&amp;RECEIVERTYPE=EmailAddress&amp;CURRENCYCODE=USD&amp;L_EMAIL0=bhaumik50%40gmail.com&amp;L_Amt0=1.00&amp;L_UNIQUEID0=&amp;L_NOTE0=&amp;USER=rserasiya_api1.gmail.com&amp;PWD=OneIsTheLonliestNumber&amp;VERSION=1&amp;SOURCE=1" ; timeout= "3600" ; X509certificate = "Certifcate Description" public static string HttpPost(string url, string postData, int timeout, X509Certificate x509) { HttpWebRequest objRequest = (HttpWebRequest) WebRequest.Create(url); objRequest.Timeout = timeout; objRequest.Method = "POST"; objRequest.ContentLength = postData.Length; if (null != x509) { objRequest.ClientCertificates.Add(x509); } using (StreamWriter myWriter = new StreamWriter(objRequest.GetRequestStream())) { myWriter.Write(postData); } using (WebResponse response = objRequest.GetResponse()) { using (StreamReader sr = new StreamReader(response.GetResponseStream())) { return sr.ReadToEnd(); } } } </code></pre> <p>In this method i succesfully sent request using StreamWriter object but i not got Response from paypal site so what should i do ? pls reply ..</p> <p>my error is : The underlying connection was closed: The connection was closed unexpectedly. </p> <p>I put image of my method which throws error and Browser Error.</p> <p>pls give me your suggestion <img src="https://i.stack.imgur.com/o4Jwb.png" alt="enter image description here"></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload