Tagged Questions
0
votes
1answer
402 views
Java EE 5 / Servlet 2.5 inject EJB into ServletFilter
I want to inject session beans into my ServletFilter, which seems not to work. Can you please tell me how to achieve this?
public class MyExample implements Filter {
@EJB
private MyBean ...
2
votes
0answers
162 views
JavaEE 6 and connection between two EJB by @Remote
I have two EJB
One EJB has Remote interface
Second EJB try to connect to One EJB by Remote.
Under Geronimo EE 5 works fine but Geronimo EE6 fails
https://issues.apache.org/jira/browse/GERONIMO-6232
...
1
vote
0answers
387 views
how to get client ip for different kinds of clients
How Can I get client ip in an ejb interceptor? My application is based on javaee5 and is deployed on glassfish and it has different kind of clients (ejb/MDB/jax-ws webservices) and I have a default ...
0
votes
2answers
232 views
Globally accessible property in EJB
I have a JavaEE application that needs to access a file in order to obtain certain informations about the installation.
This access is read-only, I do not need to change that file within the ...
0
votes
2answers
340 views
Packing 1 WebService and 2 MDB's in a WAR file (JEE5)
I would like to pack in a war file a webservice and 2 mds's but no matter what i do i do not see the MDS's being deployed.
The other alternative i have is to pack my app in a ear and there to put the ...
2
votes
1answer
267 views
JMS application client can create more than one active sessions while web/ejb components cannot?
I am reading the JEE5 tutorial for JMS.
And I am having a hard time understanding the reason for this 'general rule':
A general rule in the Java EE platform specification applies to all Java EE ...
1
vote
1answer
2k views
difference between jms consumer and message driven beans
really basic question - is there any difference between an asynchronous jms consumer vs an actual MDB (message driven bean). The only difference i see is the Message driven bean class
has ...
0
votes
1answer
149 views
what happens when pool of stateless beans runs out
we know that the stateless sessions beans (JEE5 context) can be pooled.
I was wondering what happens when the Server's pool of stateless session beans has no more instances left and another client ...
0
votes
1answer
89 views
load distributon between various jms provider instances
Producers <--> Consumer
In the above scenario there are lets say 'N' number of producers trying to put a lot of messages in our (Consumer's) JMS queues.
My question is how does the load ...
0
votes
1answer
82 views
recommended connection method for outside clients to connect to JMS queues
We have our clients in an extranet based environment that need to connect to our JMS queues. Should they be able to just lookup our queues and connectionFactories in the JNDI space.
I mean what is ...
2
votes
4answers
254 views
Porting a JMS application to MQ
Today if we build an application using the JMS API (using MDBs as message listeners, host it on lets say GlassFish or Weblogic 10) and tomorrow lets say the traffic goes crazy, can we port this ...
0
votes
1answer
178 views
maximum number of queues in JMS application
Thinking of a brand new application which will have the following architecture
Dealers <--> Network <--> Issuers
1) The Dealers will place orders,
2) Network processes them for basic sanity ...
0
votes
2answers
292 views
EJB and the Web Tier
I am learning EJB and to do that I bought a book name EJB 3 Developer Guides. I got some understanding on how EJB architecture is and how it works. The book does well in explaining this.
But the ...