Tagged Questions
The session-bean tag has no wiki summary.
15
votes
5answers
17k views
JBoss: What does the warning EJBTHREE-1246 from the InterceptorRegistry mean?
I am currently developing an EJB 3.0 based application on the JBoss AS 5.0.0.GA and just recently the following warning showed up in the server log:
09:50:19,735 WARN [InterceptorsFactory] ...
5
votes
1answer
1k views
EJB 3 Session Bean Design for Simple CRUD
I am writing an application that's sole purpose in life is to do CRUD operations for maintaining records in database. There are relationships between some of the tables/entities. Most examples I've ...
2
votes
2answers
120 views
What is the preferred way to use EJBs and Servlets for web applications?
I am trying to familiarize myself with JavaEE. I am a bit confused as to what the purpose of each "component" (for lack of a better word) is: Session Beans and Servlets, and how they properly ...
2
votes
2answers
198 views
Why not use Session Beans instead of Message Driven Beans?
I'm wondering, why not use Session Beans instead of Message Driven Beans ?
If you can call remote methods from EJBs, so why bother sending/receiving messages with Message Driven Beans (which is more ...
1
vote
1answer
48 views
Where I can't create timer of EJB3 Timer Service?
In EJB3 Timer Service, I can create the timer with the timerService.createTimer(...)function, but the question is where I can use it?
As I know, I can't do it in Session Bean's lifecycle function, ...
1
vote
1answer
85 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
1answer
178 views
Refresh managed session bean in JSF 2.0
After I commit some data into the database I want my session beans to automatically refresh themselves to reflect the recently committed data. How do I achieve this when using managed session beans ...
1
vote
1answer
96 views
How to update the JSF sessionscoped managed bean if i access it?
As title.
The problem is the attribute in the bean is fixed after init().
I want to update the count attribute when ever i access #{managedBean.xyz} method in JSF
I want to stick with the ...
1
vote
1answer
64 views
can i have more than one end point in my wsdl?
HI, I have a webservice which is developed using ejb stateless sessionbeans - and it serves more than 10 clients , now we are planning to change the endpoint url to some other ... and for sometime i ...
1
vote
2answers
159 views
How can I gracefully handle JSF application failures?
If my JSF applications, I'll sometimes come across a bug that, for example, corrupts a user session bean somewhere and the user is stuck looking @ a bunch of java exception gobbly-gook on their ...
1
vote
1answer
478 views
JSF + HashMap and its key
I have a database with 2 tables CD and Song. Session bean access then entity classes of those two tables. In my backing bean, I just have a String cd and HashMap<CDName, CDName> cds that will ...
1
vote
2answers
291 views
Simple but good pattern for EJB
What would you suggest as a good and practical but simple pattern for a soloution with:
HTML + JSP (as a view/presentation)
SERVLETS (controller, request, session-handling)
EJB (persistence, ...
0
votes
1answer
9 views
Runtime Exception while creating EJB Object
I have developed an application with Java 1.6, EJB-2.1. The application is deployed on JBossAS-5.1.0. The application has been running very smooth for long a time. But for last two days, I found ...
0
votes
1answer
43 views
Inter glassfish Session Bean sharing
I'm trying to find a way to do that, but I could not find the riiiiight answer googling it. I think I'm close to it but I fell like something is still missing, or I just need some external opinion ...
0
votes
1answer
64 views
Calling a method on Session Bean from POJO?
Given only the fully qualified class name/interface name of the Session Bean, is it possible to instantiate call a method on it from a POJO?
If yes, how?
Thanks,
TheLameProgrammer
0
votes
0answers
72 views
How to access & create another session bean within JSF [closed]
Possible Duplicate:
How to access session beans in JSF
I have a session bean that I need to initiliaze and load. I do that by using ...
0
votes
1answer
167 views
How to implement polling in Spring together with Observer pattern
I'm trying to implement a service that asynchronously performs polling via a thread and then notifies a list of observers.
The architecture is as follows: multiple concurrent jsf session beans can ...
0
votes
1answer
109 views
Is it enough to convert a POJO to an EJB session bean …?
Is it enough to convert a POJO like Util class to an EJB session bean by putting an annotation (@Stateless or @Stateful) and using injected EntityManager in it?
0
votes
0answers
34 views
How Session beans sends message to Message Driven Bean?
Is this possible to send message from SessionBean to MessageDrivenBean in EJB 2.? If so how..? I'm very new to EJB..
0
votes
0answers
205 views
Observer pattern with EJB 3 and Swing
I have a Remote Stateful Session Bean (Observable) that stores a state that needs to be observed by a bunch of swing views. When one of these views performs an action, the Session Bean notifies all ...
0
votes
3answers
144 views
Why need a session bean?
I can use jsp to write a web application, I can use jsp to execute a SQL statement to maintain database, why I need a session bean? What make the session bean so special? thank you.
0
votes
3answers
494 views
By using ejb 3 , jsf and jboss is it possible to call a ejb method from web module?
Even if I have different modules in my jee application including myproject-web and myproject-ejb; is it possible to call (or inject) my ejb session bean which is in the ejb module from a managed bean ...
0
votes
1answer
195 views
Session Bean returning another Remote Session Bean reference [JBOSS]
I have a Stateless Session Bean in my JBoss Server that contains a function returning an instance of another Session Bean (this one is stateful).
My problem arises because this returned object ...