Questions tagged [paypal-soap]

The PayPal SOAP API is exposing various features of the PayPal platform through SOAP webservices.

Related Tags

24 questions
1
vote
1 answer

Paypal integration - GetExpressCheckoutDetails PaymentActionNotInitiated

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…
iowa
  • 97
  • 1
  • 3
  • 7
0
votes
1 answer

Paypal Button manager api throwing 404 not found error on Live site

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.…
Narasappa
  • 546
  • 1
  • 9
  • 31
0
votes
1 answer

Is there pagination for transaction search?

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…
amichaeld
  • 1
  • 1
0
votes
1 answer

(400)Bad Request in PayPalAPISoapBindingStub.transactionSearch

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…
0
votes
1 answer

PayPal .NET SDK 1.7.2 - Express Checkout?

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…
Tomas Beblar
  • 468
  • 4
  • 18
0
votes
1 answer

paypal SoapClient not working

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
Jonah
  • 2,040
  • 7
  • 29
  • 32
0
votes
1 answer

How to specify IPN Listener URL for PayPal MassPay Requests

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…
Iain McNaught
  • 48
  • 1
  • 1
  • 6
0
votes
1 answer

How to integrate Paypal with SOAP API?

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 =…
Guzzilar
  • 3
  • 2
0
votes
1 answer

How to set shipping charges in Paypal SOAP API express checkout

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…
vakas
  • 1,799
  • 5
  • 23
  • 40
1
2