I am working to implement a Paypal Express Checkout. I have setup a Paypal developer and sandbox account including a Personal Sandbox test account to act as the buyer. I am implementing a SOAP solution and so far have been able to complete the…
We have integrated Paypal "Button Manager api" for our clients in 2015,till last wednesday it was working fine but since then it has stopped working and throwing the error "404 not found".
I have already checked the token,Api username, and Password.…
I am trying to execute the TransactionSearchReq method using the PayPal SOAP API and i get the following warning:
ShortMessage: Search warning
LongMessage: The number of results were truncated. Please change your search parameters if you wish to see…
After having a SSLHandshakeException using the paypal SOAP API (TransactionSearch), I have updated paypal_base.jar to the version indicated by paypal in the following link:
https://github.com/paypal/TLS-update
I have fixed that problem, however I…
Does the PayPal .NET SDK 1.7.2 (https://www.nuget.org/packages/PayPal/) support Express Checkout? I can't seem to find it in the sample code.
If not, does it provide another mechanism to take payment on an ecommerce site?
Or should I be using the…
I am using PHP's SoapClient class to connect to paypal. I have a number of problems:
The paramaters I pass to the soap call are array('ReturnAllCurrencies'=>0, 'Version'=>'63.0') but as you can see in the request below, 63.0 is put in …
I'm using the PayPal Merchant-SDK to send MassPay items. I need to listen for IPN messages returned from PayPal.
I've specified the URL in sdk_config.properties with:
service.IPNEndpoint=" ... "
but the URL is not appearing in the requests that…
I have some problem when i integrate PayPal with SOAP API.
Now, This my code
// Set paypal
// Include NuSOAP
$url_nusoap = "xxx/nusoap/nusoap.php";
include($url_nusoap);
$wsdl_URL =…
I am adding an item of 20.00 and setting the order total to 22.00
paymentDetails.OrderTotal = new PayPalSandboxWS.BasicAmountType()
{
currencyID = ConvertProgramCurrencyToPayPalSandbox(currency),
Value = "22.00"
};
and…