Do you have an "application.xml" in the directory "accountlocate.ear/META-INF"? If not, create one and register your jars there. The jars in the deploy-directory are only automatically deployed if they aren't wrapped within an ear. As soon as you use an ear, you need an application.xml. Hope, I could help!
Here is the DTD: http://java.sun.com/dtd/application_1_3.dtd A simple example of this file could look like this:<?xml version="1.0" encoding="UTF-8"?> | <!DOCTYPE application | PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN" | "http://java.sun.com/dtd/application_1_3.dtd"> | <application> | <display-name>My Application</display-name> | <module> | <ejb>MyEJB.jar</ejb> | </module> | <module> | <connector>MyResourceAdapter.rar</connector> | </module> | <module> | <web> | <web-uri>MyWebClient.war</web-uri> | <context-root>/My/Application</context-root> | </web> | </module> | </application> View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3871691#3871691 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3871691 ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
