Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within JBoss/WildFly
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Tim Cooke
Campbell Ritchie
paul wheaton
Ron McLeod
Devaka Cooray
Sheriffs:
Jeanne Boyarsky
Liutauras Vilda
Paul Clapham
Saloon Keepers:
Tim Holloway
Carey Brown
Piet Souris
Bartenders:
Forum:
JBoss/WildFly
need to change weblogic-ejb-jar.xml to jboss.xml
rajareddya reddy
Ranch Hand
Posts: 61
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi, following is weblogix-ejb-jar.xml.i want to change this to jboss.xml.can somebody help.we are migrating aour app to weblogic
jboss
.
<!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic 8.1.0 EJB//EN' 'http://www.bea.com/servers/wls810/dtd/weblogic-ejb-jar.dtd'> <weblogic-ejb-jar> <weblogic-enterprise-bean> <ejb-name>ProfileSLBean</ejb-name> <transaction-descriptor> <trans-timeout-seconds>600</trans-timeout-seconds> </transaction-descriptor> <reference-descriptor> <resource-description> <res-ref-name>jdbc/thbDSLocal</res-ref-name> <jndi-name>jdbc/thbDSLocal</jndi-name> </resource-description> </reference-descriptor> <jndi-name>ejb/thub/mhbadp/ProfileSLHome</jndi-name> </weblogic-enterprise-bean> <weblogic-enterprise-bean> <ejb-name>PageManagerSFBean</ejb-name> <stateful-session-descriptor> <stateful-session-cache> <max-beans-in-cache>1000</max-beans-in-cache> <idle-timeout-seconds>600</idle-timeout-seconds> </stateful-session-cache> <stateful-session-clustering> <home-is-clusterable>true</home-is-clusterable> <home-load-algorithm>round-robin</home-load-algorithm> <replication-type>InMemory</replication-type> </stateful-session-clustering> </stateful-session-descriptor> <transaction-descriptor> <trans-timeout-seconds>600</trans-timeout-seconds> </transaction-descriptor> <reference-descriptor> <resource-description> <res-ref-name>jdbc/thbDSLocal</res-ref-name> <jndi-name>jdbc/thbDSLocal</jndi-name> </resource-description> </reference-descriptor> <jndi-name>ejb/thub/mhbadp/PageManagerSFHome</jndi-name> </weblogic-enterprise-bean> </weblogic-ejb-jar>
ravikanth reddy
Ranch Hand
Posts: 46
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
You can find dtd in JBOSS_HOME/docs/dtd
jboss_version.dtd
<?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS//EN" "http://www.jboss.org/j2ee/dtd/jboss.dtd"> <jboss> <enterprise-beans> <session> <ejb-name>ProfileSLBean</ejb-name> <jndi-name>ejb/thub/mhbadp/ProfileSLHome</jndi-name> <resource-ref> <res-ref-name>jdbc/thbDSLocal</res-ref-name> <jndi-name>jdbc/thbDSLocal</jndi-name> </resource-ref> </session> </enterprise-beans> </jboss>
If you want to add any additional configuration you have to define container configurations.
Ravikanth Malyala
Did you see how Paul
cut 87% off of his electric heat bill with 82 watts of micro heaters
?
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Looking up JNDI in Weblogic6
multiple beans per jar
help please--URGENT!!! deploying an EJB component
cannot deploy to jboss 5.0.1 server
Starting WL 5.1 after deploying an Entity bean
More...