| Author |
Deploy a Weblogic 5.1 EJB on JBoss 4.0.1
|
Joy Bhowmik
Greenhorn
Joined: Feb 01, 2005
Posts: 1
|
|
Hi I am trying to make an equivalent jboss.xml from a weblogic-ejb-jar.xml. The weblogic DD is for Weblogic v 5.1. Here is a sample: <?xml version="1.0"?> <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic 5.1.0 EJB//EN' 'file:///o:/jar/weblogic-ejb-jar.dtd'> <weblogic-ejb-jar> <weblogic-enterprise-bean> <ejb-name>spa.anesthesia.AnesthBilling</ejb-name> <caching-descriptor> <max-beans-in-free-pool>100</max-beans-in-free-pool> <max-beans-in-cache>100</max-beans-in-cache> <idle-timeout-seconds>60</idle-timeout-seconds> </caching-descriptor> <transaction-descriptor> <trans-timeout-seconds>60</trans-timeout-seconds> </transaction-descriptor> <jndi-name>spa.anesthesia.AnesthBilling</jndi-name> <transaction-isolation> <isolation-level>TRANSACTION_READ_COMMITTED</isolation-level> <ejb-name>spa.anesthesia.AnesthBilling</ejb-name> <method-intf>Remote</method-intf> <method-name>*</method-name> </transaction-isolation> </weblogic-enterprise-bean> <security-role-assignment> <role-name>spa</role-name> <principal-name>spa</principal-name> </security-role-assignment> </weblogic-ejb-jar> Can someone tell me what are the jboss specific tags that will be replacing the given tags above. Additional information: I tried the FOEDeployer as provided in Wiki but unfortunately this did not deploy the application. I guess the converter only works for Weblogic v6 EJBs Also tried to deploy the jarred application without the weblogic-ejb-jar files- and even this did not deploy the application. Any help will be greatly appreciated.
|
 |
 |
|
|
subject: Deploy a Weblogic 5.1 EJB on JBoss 4.0.1
|
|
|