Reputation: 1455
How do I change the timeout period for a PayPal Vault transaction? Sometimes it works and other times I keep getting this timeout error even though I'm changing credit card numbers.
I'm using VS 2013 and C#. I've seen a reference to paypal.config but I don't know where that would be placed or what to put in it.
Upvotes: 2
Views: 581
Reputation: 1455
I'm building the config in code so all I had to do is add:
config = new Dictionary<string, string>();
config.Add("connectionTimeout", "120000");
Upvotes: 3