Forget the -ds.xml, that is not what you are trying to achieve at all. In your web application in the web.xml you have specified a resource reference, the error is saying that you need a jboss-web.xml deployment descriptor to be packaged in your war that also contains a resource-ref with the JBoss specific settings.
The jboss-web.xml should be something similar to: - | <!DOCTYPE jboss-web PUBLIC | "-//JBoss//DTD Web Application 2.4//EN" | "http://www.jboss.org/j2ee/dtd/jboss-web_4_0.dtd"> | | <jboss-web> | <resource-ref> | <res-ref-name>jms/QueueFactory</res-ref-name> | <jndi-name>ConnectionFactory</jndi-name> | </resource-ref> | </jboss-web> | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3891461#3891461 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3891461 ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
