RMI/IIOP is Corba. The default in jboss is RMI/JRMP If you look in conf/standardjboss.xml you will see a invoker binding for iiop. You just add a jboss.xml to your deployment that says use that binding. Here's an example from the testsuite:
| <?xml version="1.0" encoding="UTF-8"?> | | <jboss> | <enterprise-beans> | <session> | <ejb-name>StatelessIIOPSession</ejb-name> | <jndi-name>IIOPSession</jndi-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> | See docs/dts/jboss_3_2.dtd for all the config options. You need to start jboss in the all configuration to make iiop/jacorb available. i.e. run.sh -c all Regards, Adrian View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3829585#3829585 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3829585 ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
