Then I would talk with the people you are sending the return url to. I would mention them by name if I remembered the first part of this message thread.
That's what I was thinking when I suggested that you talk to the people that you are sending the return url to. They are apparently stripping the authentication string from the url you are sending. That needs to be correct on their end of things. There is
absolutly NOTHING that you can do about it from your end.
That is the issue, in any cross plateform redirection you can not use cookie less session because that is stored in your URL and when you come back from paypal then it away. so your session id is not found in URL so all session value returns as null and
system generate new session id but your old is gone...
So I suggest use normal session rather then cookie less/
My Tech Blogs MCPD Enterprise and Web Application
MCTS Web, Window and Enterprise Application
Hunain Hafee...
Member
238 Points
639 Posts
Re: session null
Dec 22, 2012 10:01 PM|LINK
i also tried that but no progress
eric2820
Contributor
2777 Points
1161 Posts
Re: session null
Dec 22, 2012 10:05 PM|LINK
Then I would talk with the people you are sending the return url to. I would mention them by name if I remembered the first part of this message thread.
http://www.my-msi.net/Admin
blog
If a post helps you, please mark it as Ansered, thank-you.
Hunain Hafee...
Member
238 Points
639 Posts
Re: session null
Dec 23, 2012 10:20 AM|LINK
the problem is that name isnt a unique field ,
amitpatel.it
Star
7976 Points
1865 Posts
Re: session null
Dec 25, 2012 10:59 AM|LINK
That might be the problem in your browser setting can you try it in other browser or different machine
Also which session mode you using? cookie less or with cookie,
MCPD Enterprise and Web Application
MCTS Web, Window and Enterprise Application
Hunain Hafee...
Member
238 Points
639 Posts
Re: session null
Dec 25, 2012 11:27 AM|LINK
cookie less
eric2820
Contributor
2777 Points
1161 Posts
Re: session null
Dec 25, 2012 12:02 PM|LINK
That's what I was thinking when I suggested that you talk to the people that you are sending the return url to. They are apparently stripping the authentication string from the url you are sending. That needs to be correct on their end of things. There is absolutly NOTHING that you can do about it from your end.
http://www.my-msi.net/Admin
blog
If a post helps you, please mark it as Ansered, thank-you.
amitpatel.it
Star
7976 Points
1865 Posts
Re: session null
Dec 25, 2012 12:45 PM|LINK
That is the issue, in any cross plateform redirection you can not use cookie less session because that is stored in your URL and when you come back from paypal then it away. so your session id is not found in URL so all session value returns as null and system generate new session id but your old is gone...
So I suggest use normal session rather then cookie less/
MCPD Enterprise and Web Application
MCTS Web, Window and Enterprise Application
Hunain Hafee...
Member
238 Points
639 Posts
Re: session null
Dec 25, 2012 03:10 PM|LINK
same problem, i did what u said !