Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
Hi,

XML
<appSettings>
   <add key="webpages:Version" value="2.0.0.0" />
   <add key="webpages:Enabled" value="false" />
   <add key="PreserveLoginUrl" value="true" />
   <add key="ClientValidationEnabled" value="true" />
   <add key="UnobtrusiveJavaScriptEnabled" value="true" />
   <add key="business" value="xxxxxxxxxxxxxxxxxxxxx@gmail.com" />
   <add key="IsSandbox" value="true" />
   <add key="currency_code" value="USD" />
   <add key="return" value="http://localhost/PayPal/RedirectFromPaypal" />
   <add key="cancel_return" value="http://localhost/PayPal/CancelFromPaypal" />
   <add key="notify_url" value="http://localhost/PayPal/NotifyFromPaypal" />
   <add key="test_url" value="https://www.sandbox.paypal.com/cgi-bin/webscr" />
   <add key="Prod_url" value="https://www.paypal.com/cgi-bin/webscr" />
 </appSettings>



This is my web.config coding for Paypal SandBox testing ,it is working properly and I already get API userName,API password,Signature from my paypal account and how will i change from sandbox to Live in asp.net MVC 3
Anybody tell me , i was spending lots time for this work...
Posted
Updated 25-Feb-14 13:36pm
v3
Comments
ZurdoDev 25-Feb-14 7:36am    
Ask paypal.

1 solution

To change to live you'll need to change the urls obviously. Depending on how you have things you may also have to change your login credentials but those likely still work.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900