Yun, You can download the file here:
http://jira.icefaces.org/secure/attachment/11147/JSF_ICEFaces.zip It contains the EAR and all of the project files. You will need this plan to deploy it with, and the pool name defined on the server (and perhaps anything else that I am not aware that I need): <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-1.1"> <environment> <moduleId> <artifactId>TestInjectWeb</artifactId> </moduleId> <dependencies> <dependency> <groupId>console.dbpool</groupId> <artifactId>PostgresDS</artifactId> </dependency> </dependencies> </environment> <context-root>/TestInjectWeb</context-root> <!-- security settings, if any, go here --> <resource-ref> <ref-name>jdbc/MyDataSource</ref-name> <resource-link>PostgresDS</resource-link> </resource-ref> </web-app> Thank you for your help! Kurzweil4 YunFeng Ma wrote: > > IIUC, EAR application and it's children Web modules have different > classloaders, but the parent classloader of the children Web modules > classloaders is the ERA application classloader which can load the classes > in ejb jars. So I can not understand why your web module can not load the > ejb classes. It will be useful to find out the answer if you can attach > your application. :-) > > -- Yun Feng > > > > ----- Original Message ---- > From: kurzweil4 <[EMAIL PROTECTED]> > To: [email protected] > Sent: Wednesday, July 30, 2008 10:39:50 AM > Subject: Could not load custaddr/ejbs/TestBean.class - When Deploy Ear > > > > When I deploy my EAR, I get the following error message: > > Could not load custaddr/ejbs/TestBean.class > > This error occurs when Geronimo is trying to deploy the WAR, which > references custaddr/ejbs/TestBean.class in the EJB-JAR. > > The EJB-JAR installs, but it has no Session beans in the JNDI viewer. > > Any ideas? > > Thanks > -- > View this message in context: > http://www.nabble.com/Could-not-load-custaddr-ejbs-TestBean.class---When-Deploy-Ear-tp18725148s134p18725148.html > Sent from the Apache Geronimo - Dev mailing list archive at Nabble.com. > > > > -- View this message in context: http://www.nabble.com/Could-not-load-custaddr-ejbs-TestBean.class---When-Deploy-Ear-tp18725148s134p18726429.html Sent from the Apache Geronimo - Dev mailing list archive at Nabble.com.
