Re: References to JMS Resources in Web.xml

2005-06-01 Thread roreilly
nesday, June 01, 2005 4:20 PM Subject: Re: References to JMS Resources in Web.xml basically, no, but sort of. The various j2ee specs require that you list the resources you use in the deployment descriptor and that the deployment process associate the resources "needs" listed in the

Re: References to JMS Resources in Web.xml

2005-06-01 Thread David Jencks
basically, no, but sort of. The various j2ee specs require that you list the resources you use in the deployment descriptor and that the deployment process associate the resources "needs" listed in the dd with actual resources deployed in the app server. That being said... if you are will

References to JMS Resources in Web.xml

2005-06-01 Thread roreilly
Hi all, from examples I have seen, when using a jms queue/topic you must add an entry to the application's web.xml for the connection factory and for the resource (e.g Queue) :       MyConnectionFactory    javax.jms.ConnectionFactory    Container    Shareable        jms/MyJMSQueue    j