0
votes
1answer
20 views
ASP.NET dictionary from session
I am saving all text boxes and dropdowns into an dictionary instance.
Private Sub SaveAllControls(ByRef cInitialControl As Control)
For Each ctrl As Control In cInitialControl.Controls
…
0
votes
2answers
17 views
which authentication method is best for a client app having to interact with a web application that has authentication?
Hi,
Just wondering what people would suggest for an approach for a WinForms client that will have to interact with my web application (ruby on rails, which will use AuthLogic for authentication).
…
0
votes
0answers
27 views
IE6 dropping session information when moving from .aspx to .asp page
So this is the problem:
We have an application that has both .asp and .aspx pages. When a user is browsing to the site using IE6, there is a possibility that the page will drop the session and the …
3
votes
3answers
49 views
Where to store logged user information on ASP.NET MVC using Forms Authentication?
Hello mates, I'm using ASP.NET MVC and Forms Authentication on my application. Basically I use FormsAuthentication.SetAuthCookie to login and FormsAuthentication.SignOut to logout.
In the …
5
votes
6answers
80 views
Using request.getSession() as a locking object?
I have some java code that gets and sets a session attribute:
Object obj = session.getAttribute(TEST_ATTR);
if (obj==null) {
obj = new MyObject();
session.setAttribute(obj);
}
In order to make …
4
votes
2answers
44 views
How do I get a collection of Session State objects in ASP.NET?
How do I get the collection of all Session objects in ASP.NET? (Note that I am NOT looking for a collection of objects stored in the Session object but all of the session objects themselves.)
This is …
0
votes
2answers
21 views
viewing session data on master page in asp.net
hey..
if i m keeping userid in a session how can i view this userid on the master page(like welcome user1)..across all the pages...??my master is designed using tables and i hv to view it in one of …
0
votes
0answers
15 views
Keeping Membership Provider’s Authentication in Web Service
Hello all,
I have a web service(.asmx) that is written in .NET. There are two methods in it; Login() and Add().
Login() gets username and password, validates user via ASP.NET membership provider.
…
0
votes
3answers
21 views
Can I use Struct.new as a Rails model? Or: How to create anonymous structured non-db backed sessions?
Given the following example:
class AnonymousSession << Struct.new(:location, :preferences)
def valid?
...
end
def new_record?
...
end
end
While this interface is sufficient to …
0
votes
2answers
37 views
nhibernate session starts
When I just Create the Factory, It seems to do a lot of work (in the log4net console) when it start without me asking him to do anything. could it be that those are just tests he does for himself?
0
votes
0answers
5 views
How to set custom period of Facebook session
Hi, May be somebody knows, how can I say to Facebook to expire it session, f.e. in 2 days. Now by default session is expired in 24 hours. thanks
1
vote
4answers
46 views
Where to store user login information in asp.net
when I build asp.net applications that require user login, I write a method in my businees class that returns a Member object instance if the user is logged in, null if not. Then I do this:
…
0
votes
3answers
57 views
Remove deadlock without killing session
Is there any workaround to remove deadlock without killing the session?
1
vote
0answers
6 views
Spring Security & CAS - Viewing secured page without login in
Hello, I have a webapp that uses Spring Security and SSO with CAS. There's also another webapp (in Classic ASP) that connect to CAS. And this situation happens sometimes:
Logged in to Java webapp and …
0
votes
0answers
4 views
updating the server cache in toplink
hi all,
i am facing one problem. I need to update the server session's cache when we say writeChanges in unit of work. As in my application i do not say commit on unit of work instead i say commit on …
