Reputation: 11
I'm developing a commercial site using Asp.net C# which is integrated paypal express check out.
Everything works fine when my application runs in localhost with all browsers (IE, Chrome, Firefox). But when I host my application on web server, session variables lost (all session variables become null) after return from paypal checkout page.
This problem happens only my application run with Firefox. Everything still works fine with IE and Chrome. Is there anyone got the same issues and know the solution to fix?
Thanks for any advice.
Upvotes: 1
Views: 881
Reputation: 1242
i think is normal, the normal flow is
1)client enter in site(SESSION START)
2)you set som session values/cookies
3)customer choose prodcuts,review is shopping cart,proceed to checkuout
4)customer left your page to go to paypal site(SESSION LOOSED)
5)complete purchase and come back to your site
Using paypal custom attributes to send all data that you need later so you can re-create the right information that you need when paypal redirect client to your site.
Upvotes: 1