• 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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Deploy Multiple Jar Files

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1.When i tried to deploy multiple Ejb jar files in weblogic server 5.1 it takes last deployed file but not the previous.so please provide me a soln how to deploy multiple ejb jar files
For Example

Weblogic.properties
--------------------
# WEBLOGIC EJB DEMO PROPERTIES
# -------------------------------------------------
# CLUSTER USERS: Note that ALL EJB deployment should be done in the
# *per-cluster* properties file ONLY.
#
# See WebLogic Demo Connection Pool below for a connection pool
# to use with these examples.
#
# Deploys EJBeans. Uncomment the appropriate lines below and
# modify DBMS-related info and paths to match your particular installation:
weblogic.ejb.deploy=C:/Ejb/Server/B.jar
weblogic.ejb.deploy=C:/weblogic/myserver/ejb_basic_statelessSession.jar
weblogic.ejb.deploy=C:/weblogic/myserver/ejb_basic_beanManaged.jar
weblogic.ejb.deploy=C:/weblogic/myserver/ejb_basic_containerManaged.jar
weblogic.ejb.deploy=C:/weblogic/myserver/ejb_basic_statefulSession.jar
weblogic.ejb.deploy=C:/weblogic/myserver/ejb_basic_statelessSession.jar
weblogic.ejb.deploy=C:/weblogic/myserver/ejb_extensions_finderEnumeration.jar weblogic.ejb.deploy=C:/weblogic/myserver/ejb_extensions_readMostly.jar
weblogic.ejb.deploy=C:/weblogic/myserver/ejb_subclass.jar
# weblogic.ejb.deploy=C:/weblogic/myserver/jolt_ejb_bankapp.jar
# Servlet used by the EJB basic beanManaged example
# Uncomment to use:
#weblogic.httpd.register.beanManaged=\
# examples.ejb.basic.beanManaged.Servlet
#
# Add a list of users (set the password with weblogic.password.[username]=XXX)
# to set an ACL for this servlet:
#weblogic.allow.execute.weblogic.servlet.beanManaged=user1,user2,etc
#weblogic.password.user1=user1Password
#weblogic.password.user2=user2Password

But When Server is Starts it loads only
weblogic.ejb.deploy=C:/weblogic/myserver/ejb_subclass.jar
ie last deployed file
Weblogic Server after loading Ejb Jar files
---------------------------------------------
Fri Aug 15 13:38:51 GMT+05:30 1997:<I> <WebLogicServer> Invoking main-style star
tup RMI Registry weblogic.rmi.internal.RegistryImpl
Fri Aug 15 13:38:51 GMT+05:30 1997:<I> <RMI> Registry started
Fri Aug 15 13:38:52 GMT+05:30 1997:<I> <EJB> Enterprise JavaBeans initializing
Fri Aug 15 13:38:56 GMT+05:30 1997:<I> <EJB JAR deployment C:/weblogic/myserver/
ejb_subclass.jar> EJB home interface: 'examples.ejb.subclass.ChildHome' deployed
bound to the JNDI name: 'SubClass.ChildHome'
Fri Aug 15 13:38:56 GMT+05:30 1997:<I> <EJB> 1 EJB jar files loaded, containing
1 EJBs
Fri Aug 15 13:38:56 GMT+05:30 1997:<I> <EJB> 1 deployed, 0 failed to deploy.
Fri Aug 15 13:38:57 GMT+05:30 1997:<I> <ZAC> ZAC ACLs initialized
Fri Aug 15 13:38:57 GMT+05:30 1997:<I> <ZAC> ZAC packages stored in local direct
ory exports
Fri Aug 15 13:38:57 GMT+05:30 1997:<I> <ListenThread> Listening on port: 7001
<NT Performance Pack> NATIVE: created IoCompletionPort successfully. IoPort=0x00
000264
Fri Aug 15 13:38:58 GMT+05:30 1997:<I> <WebLogicServer> WebLogic Server started
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic