0
votes
0answers
27 views
How to store object (not string) in session in play framework?
I have a project for school and I have to use Java. Recently I found play framework and I want to try to use it. It's easy enough for a quick start, but I ran into a problem with s …
1
vote
4answers
61 views
Can I get the size of a Session object in bytes in c#?
Is it possible to get the size(in bytes) of a Session object after storing something such as a datatable inside it?
I want to get the size of a particular Session object, such as …
1
vote
3answers
34 views
asp.net: Individual Session Variables vs Object Saved in Session
We have various related session variables for a complex page that has various things going on. Currently these session values are individual page properties (Guid, String, Integer …
0
votes
3answers
59 views
Does Session.Remove() clear memory in c#?
I am using a Session variable to pass a datatable from 1 page to another. Sometimes the datatable can contain well over 100,000 records. After running it a few times, I get throw …
1
vote
1answer
37 views
Provide strongly typed access to the session object
What is the best way to provide strongly typed access to the session object? I am planning on turning on Option Strict, which is causing the compiler to complain about my lazy pro …
4
votes
7answers
177 views
User roles - why not store in session?
I'm porting an ASP.NET application to MVC and need to store two items relating to an authenitcated user: a list of roles and a list of visible item IDs, to determine what the user …
1
vote
2answers
37 views
ASP.NET is there a way to save application state as session state on different server ?
Hi, maybe the question is wrong but here is what i want to achieve maybe there is other way to do that.
I have ASP.NET application running .net 3.5, there is a client list and few …
0
votes
2answers
33 views
How do I create a session in Catalyst?
Trying to figure our how to create, store and retrieve session info in Catalyst. Any suggestions?
0
votes
2answers
45 views
How do I share data between a jsp page and servlet
I have several .jsp pages and several servlets.
I need to save some information to a session variable. In the jsp page I simply refer to
session.get...()
or
session.set...() …
0
votes
3answers
39 views
how to Intialize the object as a static only for one session
I am working with ASP.net 3.5 MVC application.
I have one assembly which has ClassA.
I have another assembly which creates the object of ClassA
Now the question is ,
how to Intia …
0
votes
1answer
31 views
Ruby - Ajax: update session value when clicking on a link
I have this ruby function in a controller
def updateSession value
case value
when 1,2
session[:value]=1
when 3,4
session[:value]=2
end
end
And I have diffe …
0
votes
2answers
45 views
ASP.NET MVC permitting only one logged in user
Hello,
I have an experience with CakePHP and now started coding on ASP.NET MVC framework.
I have a problem with the login system. How can I restrict users from logging only one ti …
0
votes
3answers
32 views
Registration and Session with PHP and MySQL
Hello boys and girls.
I'm looking for an in-depth tutorial of registration and session management using PHP and MySQL.
Sorry if this is the wrong place to ask for this, but i rea …
2
votes
1answer
26 views
Gracefully terminate WCF Service - complete all open sessions and restrict new sessions
I have a WCF Service that I have written, which is hosted within a Windows service. It is operating in PerSession mode. The service permits clients to open files, make changes to f …
1
vote
3answers
80 views
CakePHP: ACL and/or Auth
My web application only has one level of authorization. It's either you're logged in or not. Would ACL be overkill for this? Would the Auth component be sufficient/secure enough …
