Tagged Questions

A stateful session bean is an enterprise bean (EJB component) that acts as a server-side extension of the client that uses it. The stateful session bean is created by a client and will work for only that client until the client connection is dropped or the bean is explicitly removed.

learn more… | top users | synonyms

5
votes
1answer
2k views

sessionscoped managed bean vs stateful ejb

If I have a @ManagedBean that's @SessionScoped, why would I use a @Stateful EJB? I used it before for shopping carts and maintaining a conversational state, but since a managed bean will be kept ...
3
votes
1answer
65 views

How does a stateful session bean regain state when client comes back?

If the stateful session bean is going to passivate, its state is written to harddisk and then the bean instance will be freed to serve other request (at least this is my understanding). When the same ...
3
votes
2answers
1k views

Why shouldn't I use a JSF SessionScoped bean for logic?

I'm developing a java EE web app using JSF with a shopping cart style process, so I want to collect user input over a number of pages and then do something with it. I was thinking to use an EJB 3 ...
3
votes
2answers
2k views

Why use stateful session beans?

I'm learning ejb3 and I'm just curious when it's convenient to use SFSB? I can't find any nice example when SFSB realy solve easily some complex problem. Actually I see that SLSB can be used as ...
3
votes
1answer
5k views

EJB 3: Accessing a stateful session bean from an application client

I am having some trouble accessing a stateful session bean (SFSB) from an application client. I am using JBoss 5.0.1.GA. The application client and the EJBs are both packaged in an EAR which deploys ...
2
votes
1answer
48 views

Stateful EJB and same session being replicated across clients

I have a stateful EJB that I am using to keep current user information within my application. This EJB is injected into the servlet controller and used to store the last user logged in. However, the ...
2
votes
2answers
54 views

Can SFSB be accessed concurrently by one client?

I know that a Stateful EJB can be accessed concurrently by a particular client. The container is serializing the requests and execute them one after another. The question is - can you set the EJB ...
2
votes
3answers
147 views

EJB3 how to make sure things happen before a bean get deleted

Suppose I let my customer reserve seats on a plane using Stateful Session Bean. If the client explicitly calls my Remove method, all of his reservations will be cancelled and the bean is removed ...
2
votes
1answer
89 views

How to split SFSB Facade?

I am having some problems devoloping an application based on EJB 3 technology. I would like to use a Facade Pattern in the Session beans to decouple my client (a web application) from my Entity ...
1
vote
3answers
48 views

Stateful Session Bean - Stateloss Issue

I have a servlet code which invokes a stateful session bean code and increment an int value of it. But, when I am invoking the servlet and it's corresponding bean for the next time , the bean losses ...
1
vote
1answer
73 views

Invoke transactional method within the same SFSB

Is it possible to invoke a transactional method from within a Stateful EJB itself? To speak more clearly: @TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED) @Stateless public class ...
1
vote
1answer
86 views

EJB - Serialization error while doing a JNDI lookup for a Stateful Session Bean

In my EJB project I have this Session Bean (Stateful): @Stateful public class StatefulShopCart implements StatefulShopCartLocal, Serializable { private static final long serialVersionUID = 1L; ...
1
vote
0answers
328 views

Singleton vs Stateful remote EJB references in clusters

I'm using a vanilla JBossAS 6 server with a couple of projects to test the functionality of clustered JBoss environments. The problem that I have is that if I transfer an EJB reference from one EJB ...
1
vote
1answer
635 views

How to use JNDI to obtain a new Stateful Session Bean, in EJB3?

I'm trying to use JNDI to obtain a new Stateful Session Bean in a servlet (as a local variable). My doGet() method has the following: Bean bean = (Bean) new InitialContext().lookup("beanName"); ...
0
votes
1answer
19 views

How to access EJB from a Quartz Job

Well, I'm using Quartz to schedule some jobs that I need in my application. But, I need some way to access a Stateful SessionBean on my Job. I knew that I can't inject it with @EJB. Can anyone help ...
0
votes
1answer
115 views

LazyInitializationException with CDI Managed Bean and Stateful Session Bean

I have a CDI Managed Bean (a bean annotated with @Named that is used on JSF) that has a Stateful Session Bean injected. This session bean is like a service, it has the entity manager (annotated with ...
0
votes
1answer
85 views

Issue with EJB - Stateful Session Bean and Servlet

I have a servlet code which calls a ejb stateful session bean code as follows, public class UsesBeansSF extends HttpServlet { protected void processRequest(HttpServletRequest request, ...
0
votes
0answers
60 views

Strange warning when ejb 3 stateful bean removing on JBossAS7.1

I deploy my simple stateful bean on JBossAS7.1. Remote interface: package ejbserver.session.test; import javax.ejb.Remote; import javax.ejb.Remove; @Remote public interface TestStateful ...
0
votes
1answer
66 views

Java EE NameNotFoundException;

I am getting this injection/JNDI-lookup error from my Java EE web application: type Exception report message descriptionThe server encountered an internal error () that prevented it from fulfilling ...
0
votes
3answers
97 views

EJB 3.1 Design Woes - Need to Instantiate Stateful Beans from MDB

I have learned a lot about EJB3.1 lately, but apparently not enough. Here's my tale of woe... I have a war with servlet to which batch files can be uploaded. The servlet validates the file, stores ...
0
votes
0answers
36 views

Different object of stateful session bean using SwingWorker in Java Swing

I have a have a custom progressbarpanel in Swing where I want to show the progress of a lengthy operation. So I created two swingworkers: One that does the actual lengthy operation in a bean managed ...
0
votes
1answer
95 views

Stateful Session Beans don't get default values after deserialization

I was going through an EJB 3.1 book (O'Reilly, Andrew Lee Rubinger and Bill Burke), there the author is mentioning that (these are not the exact words in the book, this is my own understanding of the ...
0
votes
1answer
212 views

How to manage a stateful webservice?

I am trying to learn about J2EE and web services (in GlassFish 3.1). This question is a bit of a follow up to this. I have figured out how to use Stateless Session Beans and the Web Service. I am ...
0
votes
0answers
122 views

Performance impact of stateful session beans in Glassfish 3.1

It's been the received wisdom that one should avoid stateful session beans whenever possible. Reasons normally given are that they impact application server performance due to lack of pooling and ...
0
votes
1answer
68 views

Is there any way of interrupting a stateful session bean?

This question is somewhat related to Handling a timeout in EJB3 without using threads. Background: I have an example of an operation that may lock up while it's running, and I have to be able to ...
0
votes
1answer
141 views

Why is there only one stateful session bean?

I tried following example for a stateful session bean http://www.roseindia.net/ejb/example-of-statelfulbean.shtml, but when I use two browsers I only get the same session bean. I thought there is a ...
0
votes
0answers
58 views

JAVA EE - Can I use a stateful session bean in a phase listener?

I have a phase listener on PhaseId.RESTORE_VIEW. It should put some Objects into a stateful session bean that should be availble there over a couple of requests. But when I call the session bean from ...
0
votes
1answer
133 views

Class cast exception on stateful ejb

For some strange reason I am getting the following exception. 2011-02-08 09:53:30,667 ERROR [STDERR] (QuartzScheduler_Worker-9) java.lang.ClassCastException: ...
0
votes
0answers
297 views

Accessing Stateful session bean from a web service client

I'm using jboss-5.1.0.GA and Android 1.5 client application. The client communicate with the Jboss through Web Service. a stateful session bean is responsible for manageing the communication(login, ...