3
votes
3answers
54 views
ASP.NET MVC - Secure Temporary Storage of Credit Card Data
I have a checkout process for a shopping cart that is currently storing credit card data in the session for retrieval once the user finalizes the purchase. The purchase process is set up such that the …
0
votes
2answers
21 views
Sessions or Constants for storing data, which is better in this situation…
Hi, I would like some advice on storing data for different languages on my website. I've spent hours searchin and can't seem to find what I need. Here's my situation, so let me know what you think.
…
0
votes
4answers
389 views
Permissions to PHP session files
Hi
I have a domain domain.com and subdomain sub.domain.com Those two domains have different ftp users (user1, user2) belonging to the same group (usergroup) on linux environment. Finally I have the …
2
votes
4answers
61 views
Is it secure to store values in session?
I am developing a web application where UserId and RoleId plays a vital role... Is it secure to store these values in session.Someother can be hiddenfield,cookie.. Which is more secured?
Any …
0
votes
1answer
107 views
Ruby on Rails: how to use sessions to implement remote sign-out?
Hi everyone,
My goal is to allow users of a Rails web app to see all their open sessions on other computers and close/sign out of them remotely. Similar to gmail's "Account activity" page (link …
3
votes
2answers
92 views
+150
What’s a typical average number of ASP.NET sessions per CPU or per memory?
(EDIT: rewritten question to make it clearer, meaning hasn't changed)
You can create an application and measure its usage. But what I would like to know, if you decide up-front about an ASP.NET …
2
votes
1answer
48 views
Given the session key and secret, how can we decrypt Rails cookies?
Hello all. I've got a question about how Rails handles cookie
encryption/decryption.
I've got this in my config/environment.rb
config.action_controller.session = {
:session_key => [some …
0
votes
1answer
24 views
Session variable removal question. as related to a paged data source.
Hello All,
I have inherited some very old ASP.Net code. Written initially in 1.0 and then converted to 2.0 There is a page which uses a custom pager control. That control has the following logic in …
11
votes
5answers
1k views
Django Sessions
I'm looking at sessions in Django, and by default they are stored in the database. What are the benefits of filesystem and cache sessions and when should I use them?
1
vote
2answers
38 views
What is the use of infinite session in facebook?
A session token is given to the user when he starts running a facebook application, as long as this token is not stolen, other people cannot impersonate him. To increase security, a new token is also …
1
vote
4answers
1k views
the best way to make codeigniter website multi-language. calling from lang arrays depends on lang session?
Hi friends,
I'm researching hours and hours, but I could not find any clear, efficient way to make it :/
I have a codeigniter base website in English and I have to add a Polish language now. What is …
2
votes
5answers
643 views
ASP.NET MVC - How to access Session data in places other than Controller and Views
We can access session data in controllers and views like this:
Session["SessionKey1"]
How do you access Session values from a class other than a controller or view?
0
votes
1answer
29 views
Handle session timeout in asp.net using Javascript
Essentially I want to be able to catch when a user lets their session timeout and then clicks on something that ends up causing an Async postback. I figured out that if I put this code in my …
0
votes
2answers
16 views
JSP Problem ussing implicit object (session) in a function
Can the object of type HttpSession called session be accessed from a function?
In a simple jsp page I have a function(see below) defined in the header of the page, and set to an onclick handle of …
1
vote
1answer
37 views
marshal data too short!!!
My application requires to keep large data objects in session. There are like 3-4 data objects each created by parsing a csv containing 150 X 20 cells having strings of 3-4 characters.
My application …
