You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ja...@apache.org on 2003/09/29 11:34:59 UTC

cvs commit: incubator-geronimo/modules/web/src dev-jetty-service.xml

janb        2003/09/29 02:34:59

  Added:       modules/web/src dev-jetty-service.xml
  Log:
  Just temporarily checked in here until all is working 100% and then it will move to
  src/deploy/jetty
  
  Revision  Changes    Path
  1.1                  incubator-geronimo/modules/web/src/dev-jetty-service.xml
  
  Index: dev-jetty-service.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <components>
  
  
      <!-- ================================================================ -->
      <!-- Set up the Jetty-specific jars                                   -->
      <!-- ================================================================ -->
      <class-space name="geronimo.system:role=ClassSpace,name=Jetty">
          <codebase url="file:lib/">
              <archive name="*"/>
          </codebase>
  	<codebase url="file:../../lib/">
  	    <archive name="geronimo-core-DEV.jar"/>
  	    <archive name="geronimo-common-DEV.jar"/>
  	</codebase>
      </class-space>
  
      <!-- ================================================================ -->
      <!-- Set up a Jetty container                                         -->
      <!-- ================================================================ -->
      <mbean code="org.apache.geronimo.web.jetty.JettyWebContainer" 
             name="jetty:role=WebContainer">
         <attribute type="java.net.URI" name="DefaultWebXmlURI">file:web-defaults.xml</attribute>
      </mbean>
  
  
      <!-- ================================================================ -->
      <!-- Set up a connector to listen for http requests                   -->
      <!-- ================================================================ -->
      <mbean code="org.apache.geronimo.web.jetty.JettyWebConnector" 
             name="jetty:role=WebConnector, port=8088">
          <attribute name="Port">8088</attribute>
  	<attribute name="Contexts">/abc, /def, /geh</attribute>
          <depends name="jetty:role=WebContainer"/>
      </mbean>
  </components>