Click here to Skip to main content
15,900,906 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi dear's
who now why,when bank send infromation for my callbackurl, all session removed???
i want verify my information for sending to bank but when this back from bank all session removed and equal null,so what i must to do???
my problem is all session=null
Posted
Comments
Sandeep Mewara 10-Jul-12 6:31am    
Not too clear. Please be specific. Don't repost, just use Improve Question link and update here.

Rahul has already suggested something, in case you have doubts, please respond to him via comment feature to discuss out.

1 solution

Session is something that you keep on your own server memory. it is created per-user-per-request basis.

when you go to bank URL you have some values in session but when response comes from bank this is treated as fresh request and it cant get hold to that session values.

SO to do something, the bank must either be sending you something in query string or must be posting the data. using this data you will have to find out what needs to be done on your end.

I hope I am clear, if you need further clarification do let me know.
 
Share this answer
 
v2

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