1 Reply Latest reply on Nov 8, 2012 2:56 PM by tnas

    How to add ejb3 session bean to jboss Corba naming service?

    danyshark

      How do I tell jboss to insert my ejb3 bean to the corba naming service?
      As I read in the menual I should specify it in the jboss.xml file of the bean
      I have edited it via the NetBeans progect like this:

      <?xml version="1.0" encoding="UTF-8"?>

      <enterprise-beans>

      <ejb-name>CalculatorSessionBean</ejb-name>
      <jndi-name>app.calculator.CalculatorSessionBean</jndi-name>
      <configuration-name>Standard Stateless SessionBean</configuration-name>
      <invoker-bindings>

      <invoker-proxy-binding-name>stateless-rmi-invoker</invoker-proxy-binding-name>


      <invoker-proxy-binding-name> iiop </invoker-proxy-binding-name>

      </invoker-bindings>

      </enterprise-beans>

      but it's not working

      Am i missing somthing?