Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   A way to get back lost session values (http://www.velocityreviews.com/forums/t953301-a-way-to-get-back-lost-session-values.html)

jbeteta@gmail.com 10-12-2012 03:57 PM

A way to get back lost session values
 
My web application is losing session values for some reason, and it happens after an external web page is called. My application is quite big, so any major change would require too much time. My database is Oracle, not Sql Server.

Would be there an alternative way to store value of those session variables? Actually I just need to keep two session variables.

I was thinking to store those values in a Oracle table. Key would be SessionID. I read that SessionID keeps its value even after other session variables are recycled or lost, but I'm not complete sure.

I was planning to put a function on each page, on Page_Load mewthod, checking if session variable is still there. If not, then go to Oracle table and retrieve it.

Something like:

If Session("MyVariable") Is dbNull.Value Then
Seek it on Oracle table, using SessionID as Key, and assign to variable Var
Session("MyVariable") = Var
End If

Do you think it would be OK? Can I trust SessionID?

Brian Cryer 11-01-2012 04:05 PM

Re: A way to get back lost session values
 
<jbeteta@gmail.com> wrote in message
news:60281abf-8b0f-4c5c-bd0f-1fd0eb5b4108@googlegroups.com...
> My web application is losing session values for some reason, and it
> happens after an external web page is called. My application is quite big,
> so any major change would require too much time. My database is Oracle,
> not Sql Server.
>
> Would be there an alternative way to store value of those session
> variables? Actually I just need to keep two session variables.

<snip>

The obvious reason for losing session variables is that you are storing
sessions in-proc and your application is recycling. So, on the assumption
that you are using in-proc (the default) I would change to state server.
Details here:
http://www.cryer.co.uk/brian/mswinsw...sion_store.htm

Hope this helps.
--
Brian Cryer
www.cryer.co.uk/brian


gourmetkingsudbury@hotmail.com 11-07-2012 11:22 AM

Re: A way to get back lost session values
 
Why not store them in cookies? they wouldn't expire unless you give them an expiration date


Mike Lalonde / Kat Lalonde
Sudbury, Ontario
Jumlers.com catering

Brian Cryer 11-07-2012 12:28 PM

Re: A way to get back lost session values
 
<gourmetkingsudbury@hotmail.com> wrote in message
news:a242de35-9889-4bf7-8d6f-872022db71ce@googlegroups.com...
> Why not store them in cookies? they wouldn't expire unless you give them
> an expiration date


Be aware that there are issues with using cookies:
1. Cookies limit the amount of data you can store - although they are fine
for small amounts of data.
2. If they know what they are doing then cookies can be read by the user -
although again this might or might not be an issue.
3. If someone is keen enough then I think they can modify the value of a
cookie, which then means that you need to verify that the value is legit.
4. If the website is in Europe then you ought to worry about the (daft) EU
cookie law.

I'm not anti cookies. They have their uses and it is good to be aware of
them.

Better would be for the OP to identify why session data is being lost.
However I expect we will never know because it doesn't look like the OP is
responding.
--
Brian Cryer
http://www.cryer.co.uk/brian




All times are GMT. The time now is 01:08 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.