<?xml version="1.0" encoding="utf-8" ?>
| <jboss>
| <enterprise-beans>
| <service>
| <ejb-name>WitnessServiceBean</ejb-name>
| <jndi-name>NotaryA/witness1/WitnessServiceBean/remote</jndi-name>
| </service>
| </enterprise-beans>
| </jboss>
Not sure what the problem is, but the jboss.xml does not look correct. Shouldnt it be:
<?xml version="1.0" encoding="utf-8" ?>
| <jboss>
| <enterprise-beans>
| <session>
| <ejb-name>WitnessServiceBean</ejb-name>
| <jndi-name>NotaryA/witness1/WitnessServiceBean/remote</jndi-name>
| </session>
| </enterprise-beans>
| </jboss>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4084882#4084882
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4084882
"xps2nini" wrote : It is ejb jar created by ant .
Can you post the output of the following command:
- From the command prompt, go to %JBOSS_HOME%/server//deploy
- Run the following command:
jar -tf myejbjarfile.jar
Replace myejbjarfile with the name of your ejb jar file. This will show us the contents of your jar file. To be identified as a ejb jar, the jar file should contain a META-INF folder with ejb-jar.xml inside it. Does your jar have that?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4084881#4084881
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4084881
Hi,
We've just started using Seam and have encountered a problem with Weblogic 10. The Weblogic EJB compiler seems to have a problem with vararg methods. It seems to interpret the method as being transient (because of the overlap in the field transient flag and method/constructor varargs flag in their respective access modifier flags).
Seam is caught up because it uses vararg methods which causes a failure during deployment of our project ear. Apparently there is change request with BEA.
Has anyone else run into this problem?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4084880#4084880
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4084880
When using seam logger in my class, it throws NullPointerException. But similar code works in Authenticator class that seam-gen creates.
import org.jboss.seam.annotations.Logger;
import org.jboss.seam.log.Log;
...
@Name("activityLogger")
public class ActivityLogger {
@Logger
Log seamLogger;
...
public void log() {
OrgUserActivityLogHome orgUserActivityLogHome = new OrgUserActivityLogHome();
...
seamLogger.info("seam logger test #0", "ok"); <-- line throwing exception
...
}
}
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4084877#4084877
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4084877