• 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

significance of weblogic.xml inside weblogic

 
Ranch Hand
Posts: 2234
Eclipse IDE Firefox Browser Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi , can anybody please let me know what is the significance of the weblogic.xml file ??
And in what conditions do we need to modify the weblogic.xml file ??

[b][/b]




Thanks
 
Ranch Hand
Posts: 32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ravi,

When coding with J2EE patterns we have to comply with its standards.

So for the following archives the deployment descriptors are mandatory.

WAR :


EAR:


these deployment descriptors are of two types application specific / server specific

here web.xml/ejb-jar.xml are the application specific descriptors where the file name is same irrespective of the server/tool where its deployed . and [weblogic.xml/weblogic-ejb-jar.xml] are server specific descriptors where the file name will change according to the server where its deployed.


web.xml/ejb-jar.xml :

Takes care of the parameters required for application configuration like [ servlet declarations/mappings/Ejb-mappigs/env-variable/welcome messagess/filter settings etc]

weblogic.xml/weblogic-ejb-jar.xml:

Defines the configuration setup for the application module in the server [ context-root/replication model/security-permissions/role mappings/version/ etc..]

Please refer the below for detailed clarifications.
http://download.oracle.com/docs/cd/E13222_01/wls/docs103/webapp/weblogic_xml.html
reply
    Bookmark Topic Watch Topic
  • New Topic