2 Replies Latest reply on May 20, 2009 11:33 PM by chairill

    deployment desriptor files

      hi everybody

      i have a question here. i created ADF application and want to deploy it to jboss5.0.0.0GA. Previously i was able tu deploy it to weblogic server 10.3 without any error. i used jdeveloper11g to create the application. My question is.. do i have to create a deployment descriptor files before deploy it to jboss and which deployment descriptor files should i create and what is the different between this 3 files:jboss-app.xml, jboss-web.xml and jboss.xml files? which one should i use and what should i put?im totally have no idea about deployment decriptor files

      i want to deploy *.ear files that includes .war and .jar files.

      tq

        • 1. Re: deployment desriptor files
          jaikiran

          You will require the jboss specific deployment descriptors only if you need to configure something specific to JBossAS.

          jboss-app.xml - Is meant for EAR file. Usually used to configure classloading
          jboss-web.xml - Is meant for WAR files.
          jboss.xml - Is meant for EJB jar files.

          The dtd or the xsd of these xmls will give you an idea about what configurations can be done in these files.

          • 2. Re: deployment desriptor files

             

            "jaikiran" wrote:
            You will require the jboss specific deployment descriptors only if you need to configure something specific to JBossAS.

            jboss-app.xml - Is meant for EAR file. Usually used to configure classloading
            jboss-web.xml - Is meant for WAR files.
            jboss.xml - Is meant for EJB jar files.

            The dtd or the xsd of these xmls will give you an idea about what configurations can be done in these files.


            hi jaikiran..
            what do u mean by configure something specific to jbossAS? Is it mean if i just create a simple application i dont need to create those files to deploy to jbossAS?

            So if i have an EAR file (which is contains WAR and JAR file) do i need to create these 3 files? Can you show me an examples for those 3 files configuration?
            tq