Tagged Questions
The session-variables tag has no wiki summary.
32
votes
6answers
24k views
Session variables in ASP.NET MVC
I am writing a web application that will allow a user to browse to multiple web pages within the website making certain requests. All information that the user inputs will be stored in an object that ...
25
votes
2answers
12k views
Rails Sessions current practices (especially for rails 3)
Anyone have any "best practices" tips for Rails and sessions? The default session type for Rails3 is still cookie store, right? I used SqlSessionStore for a while and it worked well, but I may move ...
19
votes
11answers
22k views
HttpContext.Current.Session is null when routing requests
Without routing, HttpContext.Current.Session is there so I know that the StateServer is working. When I route my requests, HttpContext.Current.Session is null in the routed page. I am using .NET 3.5 ...
18
votes
3answers
5k views
How to configure a session timeout for Grails application?
In one of controllers in my Grails application I'm preserving a parameter value in a session variable like this:
session.myVariable = params.myValue
After that, I can access the saved value ...
18
votes
4answers
33k views
How to access session variables from any class in ASP.NET?
I have created a class file in the App_Code folder in my application. I have a session variable
Session["loginId"]
I want to access this session variables in my class, but when I am writing the ...
17
votes
2answers
7k views
How to empty/destroy a session in rails?
I can't seem to find it anywhere... How do I delete/destroy/reset/empty user's session in rails? Not just one value but the whole thing..
11
votes
3answers
4k views
Asp.Net MVC and Session
I'd like to construct an object in different steps in an asp.net mvc application, each step being a different page. The sort of thing you'd store in Session in a quick Web.Forms application.
Reading ...
9
votes
6answers
513 views
PHP Session not written after Output(echo or print_r on external ajax Call)
I´m having some serious trouble debugging this particular problem and I hope someone has a clue what i´m doing wrong.
I have a Custom CMS system working that uses Paragraphs as building blocks that ...
9
votes
7answers
17k views
Setting a PHP $_SESSION['var'] using jQuery
I need to set a PHP $_SESSION variable using the jQuery. IF the user clicks on an image I want to save a piece of information associated with that image as a session variable in php.
I think I can ...
9
votes
6answers
6k views
Web authentication state - Session vs Cookie vs?
What's the best way to authenticate and track user authentication state from page to page? Some say session state, some say cookies?
Could I just use a session variable that has the ID of the user ...
9
votes
2answers
8k views
PHP session side-effect warning with global variables as a source of data
I'm trying to host a PHP web site that was given to me. I see this warning:
Warning: Unknown: Your script possibly
relies on a session side-effect which
existed until PHP 4.2.3. Please be
...
8
votes
2answers
418 views
Session variable trounced by Chrome and FF
In my asp.net web application on page load I grab the current page url and store it in a session variable to track which page the user is on so they can return to it if they enter an admin area, do ...
8
votes
4answers
1k views
Are there limits for session variables?
As the title says, are there limits (if any) for session variables or they're considered as usual variables and can store equal amount of data?
I'm looking if there are any other limits aside from ...
8
votes
4answers
1k views
How do I pass session variables from one domain to another in PHP
I have encountered a situation where I need to pass $_SESSION variables from one domain to an iFrame page from another domain. I have spent the last 16 days trying various methods to no avail. I think ...
8
votes
7answers
2k views
When should I use session variables instead of cookies?
Session variables and cookies seem very similar to me. I understand the technical differences, but how do you decide when to use one vs. the other?
8
votes
5answers
8k views
Enabling Session State in SharePoint 2010?
I have a web service built for SharePoint 2007 that I am trying to port to SharePoint 2010. This web service is dependent on session state to function properly, but so far, I have been enable to get ...
8
votes
22answers
1k views
Does This ASP.NET Consultant Know What He's Doing?
The IT department of a subsidiary of ours had a consulting company write them an ASP.NET application. Now it's having intermittent problems with mixing up who the current user is and has been known ...
7
votes
6answers
262 views
Is it possible to “pirate” a session variable (I do not want to know how)
I am currently doing a website in php, we are using a Session variable to store the permission level of each user.
For example, if any one of you would go on the website, you would automatically get ...
7
votes
2answers
767 views
.NET HttpSessionState Case Insensitivity
.NET's HttpSessionState using an "InProc" store seems to treat session variable key values as case insensitive. For example:
session["foo"] = 1;
session["Foo"] = 2;
...
6
votes
4answers
191 views
How do I implement a single sign-on for different ColdFusion applications running on the same server?
I have multiple CF applications running on the same server under the same domain name. One of them, let's call it Portal, is intended to be the single sign-on for the other applications, which let's ...
6
votes
6answers
4k views
Magento - Passing data between a controller and a block
Really quick and simple question but I can't find a decent answer to this - What is the best way to pass data from a controller to a block in Magento.
Incase it makes a difference, I am loading the ...
6
votes
2answers
281 views
Using PHP session variable in perl
Can I use a session variable that I have created with php in perl?
6
votes
2answers
5k views
How can i get the value of a session variable inside a static method in c#?
I am using asp.net pagemethods with jquery.... How to get the value of a session variable inside static method in c#...
protected void Page_Load(object sender, EventArgs e)
{
...
6
votes
1answer
18k views
Spring 3.0 set and get session attribute
I want to read a domain object (UserVO) from session scope.
I am setting the UserVO in a controller called WelcomeController
@Controller
@RequestMapping("/welcome.htm")
public class ...
6
votes
6answers
648 views
is it a good idea to create an enum for the key names of session values?
instead of doing
session("myvar1") = something
session("myvar2") = something
session("myvar3") = something
session("myvar4") = something
is doing
enum sessionVar
myvar1
myvar2
myvar3
...
5
votes
6answers
70 views
PHP $_SESSION can it hold large files?
I'm building a multi-page form with PHP. I'm storing most of the value's in $_SESSION. Using the following method...
$_SESSION['title'] = $_POST['title'];
It's working fine so far but I'm not sure ...
5
votes
3answers
690 views
PHP: a better way to check if session has already started?
I have a php file that is sometimes called from a page that has started session and sometimes from a page that doesn't have session started... There fore when i have session_start() on this script ...
5
votes
2answers
285 views
Cookie vs. Session based flash message
A neat feature which I found in CakePHP was the ability to set a "flash" message, say on some "save" script, then have that message displayed on the following page. Something like, "Post updated", or ...
5
votes
2answers
231 views
What are the benefits of a stateless web application?
It seems some web architects aim to have a stateless web application. Does that mean basically not storing user sessions? Or is there more to it?
If it is just the user session storing, what is the ...
5
votes
1answer
1k views
Why HttpContext.Current.Session is null in Global.asax?
I'm using VS2010 and created a simple asp. web forms application, using Development Server to test it.
I try to store user data - queried from sql server - in the session, since I don't want to access ...
5
votes
2answers
436 views
Clearing session values on tab close
To my understanding the session variable gets cleared when a users closes their browser. Is there anyway to clear the session variable when a users closes a tab in a browser?
The reason I ask is ...
5
votes
5answers
147 views
ASP.NET; Several session variables or a “container object”?
I have several variables that I need to send from page to page...
What is the best way to do this?
Just send them one by one:
string var1 = Session["var1"] == null ? "" : Session["var1"].ToString();
...
5
votes
3answers
479 views
Session Objects not Updating ASP.NET
I set a session object at one juncture in my code:
Session("my_name") = "Dave"
Later in my code I give the user a chance to update this object:
Session("my_name") = TextBox1.Text
I reload my ...
5
votes
3answers
10k views
Saving data to session in JSF
I am new to the world of J(2)EE and web app development but am quickly navigating my way around it and learning a lot. Every day is a fantastic voyage of new discovery for me.
I am currently working ...
5
votes
10answers
672 views
Is this code secure?
<?php
session_start();
include("connect.php");
$timeout = 60 * 30;
$fingerprint = md5($_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT']);
if(isset($_POST['userName']))
{
$user = ...
4
votes
2answers
373 views
CakePHP - Saving one session variable deletes another
I'm using session variables in CakePHP to store my relevant user Twitter and Facebook data, when the user logs in if he has linked his Twitter and FB accounts this information is saved in the session ...
4
votes
1answer
310 views
Codeigniter duplicate session issue
I have an application built with codeigniter using the sessions class and storing session data in a database. The problem is I'm getting extra session records in my database when my webpage loads a ...
4
votes
1answer
162 views
Assigning and Passing Sessions Variables Between Subdomains
I am going to create a site that will have have multiple subdomains. For an example:
shop.domain.com
blog.domain.com
news.domain.com
account.domain.com
I would like to know if session variables ...
4
votes
2answers
88 views
What level of confidential information can I save in a $_SESSION variable?
Let's think you have a shopping application with credit card payment ability. A user logs in and starts shopping. Is it ok to fetch his credit card number and password from database and save them to a ...
4
votes
2answers
76 views
Hotornot - How is the previous image memorized?
The question might make you smile but how does this website keep a trace of what the previous image is? I mean, the central image is probably picked at random as well as the next image but the ...
4
votes
2answers
379 views
PHP Multiple Concurrent Sessions Per User
I'm working on a web app using PHP on Apache. $_SESSION variables are used quite a bit for the information that must persist across pages.
We need each user to be able to open multiple concurrent ...
4
votes
3answers
421 views
Where are the session variables saved?
Where exactly are session variables saved? Cookies? Server memory?
Again where are Application variables saved?
4
votes
3answers
486 views
How to default null session values to blank strings in C#
I'm used to using VB.net for web programming.
Often, I have something like:
Dim s as string = Session("s")
I get a string value for s from the web session. If there is no value in the web ...
4
votes
2answers
171 views
Does http and https will share the same sessions
I am building a web application and I need to know whether I can share the Same session or not between http or https?
4
votes
1answer
47 views
ASP.NET Server Controls and <%$ %> params like ConnectionStrings
Is there a complete list of the objects you can tap into with <%$ %> tags in ASP.NET
I know you can do things like <%$ ConnectionStrings:northwind %> in the ConnectionString attribute of the ...
4
votes
4answers
649 views
strongly typed sessions in asp.net
Pardon me if this question has already been asked. HttpContext.Current.Session["key"] returns an object and we would have to cast it to that particular Type before we could use it. I was looking at ...
4
votes
2answers
1k views
Using log4net with ASP.NET to track Session variables
Our web app captures a user's login and stores it in a session variable, similar to Session("User_Id"). I'd like to use log4net to capture the User in the log.
I see a few references to using the ...
4
votes
1answer
715 views
ASP.NET - Disappearing session variables
I am working a current web application for a client and I am having some trouble with session variables disappearing on me. I will try and set up a good description of the scenario as best I can. It ...
3
votes
2answers
37 views
codeigniter sess_destroy() not working properly,what m i doing wrong?
I am a newbie in codeigniter. I am using an an login form to login as an admin. When the admin logs in with the correct user name and password s/he is directed to the home page with a session ...
3
votes
2answers
303 views
Best Practices in User Privileges/Session Variables in MVC3
Hi Stack Community Members,
I am developing an application under MVC3 where users have department-specific CRUD privileges. In other words, all users can view data for all departments, but only ...