Tagged Questions
The sessionscope tag has no wiki summary.
2
votes
2answers
778 views
Why is NHibernate lazy loading bound to the session?
Using Castle ActiveRecord, I stumbled into a problem when lazy-loading.
The following works (obviously)
using (new SessionScope())
{
User singleUser = User.FindFirst(...)
UserGroup groups = ...
1
vote
1answer
61 views
Accessing a CDI SessionScoped bean from an EJB @Asynchronous invocation
I have a process which takes a long time to compute so it's marked as @Asynchronous in a Stateless EJB. When the process finishes, I'd like it to access a SessionScoped bean from the session which ...
1
vote
1answer
335 views
Why should we make a SessionScoped ManagedBean thread safe in JSF?
I know that Application-Scope persists across multiple users, so it's obvious that we should make sure that all the ApplicationScoped ManagedBeans are thread safe.
I also understand that we don't ...
1
vote
1answer
506 views
How to use @SessionScoped with Guice
Hi
I am currently playing with Guice and @SessionScoped. To give it more sense, I decided to build a (very simple) authentication process.
Below, I will explain each step I have done. Then I will ...
1
vote
1answer
290 views
How can i get a SessionScope Object in my Bean
i search a way how i can access a class in the sessionscope.
I have this class:
@ManagedBean
@SessionScoped
public class UserManagerBean implements Serializable{...}
and i will access some fields ...
0
votes
1answer
40 views
@PostConstruct called before other SessionScoped Bean updated in JSF2 / CDI?
i have a strange behaviour in my app:
I use a SessionScope bean (Bean A) to hold users preferences. In my other Bean (Bean B), which is in RequestScope, I inject the SessionScope bean.
Bean B has a ...
0
votes
1answer
61 views
NHibernate WinForms Multiple (SessionScope) Sleeping Sessions performance
I've implemented NHibernate Session per Form aproach with Castle AR (SessionScope), if i open a form, i open a (SessionScope) session and Disposes it at form close. If i open N single forms i have N ...
0
votes
1answer
81 views
What is the correct way to Castle ActiveRecord SessionScope in desktop applications?
In a Desktop Application using Castle ActiveRecord
I open a SessionScope and keep alive for the application lifetime, I dispose this at the end of the application.
When I need to do "something" I do ...
0
votes
2answers
95 views
How to retrieve current NHibernate Session object from Castle ActiveRecord SessionScope
I have an open Castle ActiveRecord SessionScope.
I need to use the nhibernate session wrapped into SessionScope.
How can i retrieve the current NHibernate Session Object from SessionScope?
thank you ...
0
votes
1answer
156 views
JSF 2: possible to initialize session-scoped beans on session start?
Is it possible in JSF 2 to initialize a session-scoped managed bean as soon as the session context is loaded? I know it's possible with Application Scoped beans and the eager attribute in the ...
0
votes
1answer
33 views
How pass a initialized bean in a session scope to another session scope?
I have a login page, which I check if the user exist in my database, if so, the bean user is initialized then I redirect to myprofile.xhtml page, but there (in myprofile.xhtml) I would like to catch ...
0
votes
1answer
148 views
CDI SessionScoped Bean generating lots of sessions
I'm doing a login. The problem is: my isUserLoggedIn() method is called several times by other sessions (i've checked using
(HttpSession) ...
0
votes
1answer
351 views
How to retrieve a session-scoped bean inside AuthenticationSuccessHandler?
I have a custom AuthenticationSuccessHandler.
What I want to do is to set some session data within onAuthenticationSuccess method.
To store session data I want to use a session-scoped bean, which ...
0
votes
1answer
621 views
Handling user session in jsf 2
I'm building a web application using jsf2. I use a @ManagedBean with a @SessionScope. In it I store the username etc in a User object.
Let's say I want to create an article, for that I have another ...
0
votes
1answer
186 views
Is SessionScope exact equivalent of ISession?
Is Castle ActiveRecord's SessionScope exact equivalent of NHibernate's ISession? If yes, why Castle ActiveRecord has provided a duplicate feature? If no, what are their differences?
0
votes
1answer
44 views
Severe Session issues ASP.NET
I have a kind of an ugly situation.
I have a big program that uses session to carry over data from one page to another in a CRM system build in ASP.NET 3.5 C#
The problem is that if you have two ...
0
votes
1answer
467 views
<h:dataTable> and SessionScoped beans
Problem: searching for some more suitable design .
Goal: I want to have table of some user information and with button "change password" in column for each user, after click : "change password" ...