Hi,
I'm in doubt about this question:
9. When setting up the JMS server, in a test environment which is already running message-driven beans (MDB), which of the following properties MUST be configured to correctly communicate messages to a new MDB?
A. Queue JNDI name
B. Initial state to: Started
C. Queue name
D. Connection factory JNDI name
E. Listener port name
Select 2 answers.
Answer A is obviously wrong, E seems to be wrong too, because you set up the listener port in the DD, not in the test environment.
But, you should specify both names and jndi names for both queue and connection factory. So, A, C and D are all correct
Could you show me my mistake?
[ February 09, 2004: Message edited by: Serge Adzinets ]
----------------------------------------------------------------------
B and E are correct answers. Because the JMS server is already running MDBs, so at lest a Connection Factory and a Destination (A, C and D) must have been defined.
[ March 11, 2004: Message edited by: BL ]