aspose file tools
The moose likes EJB and other Java EE Technologies and the fly likes Deploy a Weblogic 5.1 EJB on JBoss 4.0.1 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "Deploy a Weblogic 5.1 EJB on JBoss 4.0.1" Watch "Deploy a Weblogic 5.1 EJB on JBoss 4.0.1" New topic
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.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Deploy a Weblogic 5.1 EJB on JBoss 4.0.1
 
Similar Threads
CacheFullException
Informix
EJB Passivate and EJB Remove for stateful Bean are not called by weblogic
Why ejbPassivate and ejbRemove are not called by weblogic container?
need to change weblogic-ejb-jar.xml to jboss.xml