-
Bug
-
Resolution: Obsolete
-
Major
-
JBossAS-5.1.0.GA
-
None
I encourter a problem at EJB3 over IIOP.
I deploy the EJB module on JBoss 5.1.0 GA,and run the JBoss server by "run.bat -c all". It is succeed to deploy and boot the JBoss server. But I found it is no any relate naming service under JBoss CorbaNaming.It seems that the deployer no bind the EJB3 Bussiness Remote Interface to the Corbanaming service.
My java code is under:
EJB3 Bussiness Remote:
package com.olm.ejb3;
public interface HW {
public String helloworld();
}
EJB3 Bean Implement:
package com.olm.ejb3;
@javax.ejb.Remote(HW.class)
@javax.ejb.Stateless(name="HWBean")
public class HWBean implements HW{
public String helloworld()
{ return "hello,world"; }}
Deployment Descriptor(jboss.xml):
<jboss>
<enterprise-beans>
<session>
<ejb-name>HWBean</ejb-name>
<configuration-name>Standard Stateless SessionBean</configuration-name>
<invoker-bindings>
<invoker>
<invoker-proxy-binding-name>iiop</invoker-proxy-binding-name>
</invoker>
</invoker-bindings>
</session>
</enterprise-beans>
</jboss>
what can I do for the next?
- is incorporated by
-
AS7-424 Implement IIOP support for EJB 3
- Resolved