User: chirino 
  Date: 01/08/30 21:28:48

  Modified:    src/etc/conf/default jboss-service.xml
  Added:       src/etc/conf/default webdefault.xml
  Log:
  Since the jetty plugin and jetty jars are being included in the dist, we might as 
well
  enable the jetty servlet container.
  
  Revision  Changes    Path
  1.3       +7 -6      jboss/src/etc/conf/default/jboss-service.xml
  
  Index: jboss-service.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/etc/conf/default/jboss-service.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jboss-service.xml 2001/08/30 20:43:04     1.2
  +++ jboss-service.xml 2001/08/31 04:28:48     1.3
  @@ -7,7 +7,7 @@
   <!--                                                                       -->
   <!-- ===================================================================== -->
   
  -<!-- $Id: jboss-service.xml,v 1.2 2001/08/30 20:43:04 pra Exp $ -->
  +<!-- $Id: jboss-service.xml,v 1.3 2001/08/31 04:28:48 chirino Exp $ -->
   
   <!-- 
      |  This is where you can add and configure your MBeans.
  @@ -48,6 +48,7 @@
         hsql-plugin.jar,
         jaas.jar,
         JavaGroups.jar,
  +      javax.servlet.jar,
         javax-sasl.jar,
         jaxp.jar,
         jbosscx.jar,
  @@ -412,15 +413,15 @@
        | Besure to check that the configuration values are valid for your
        | environment.
        |
  +   -->
     <mbean code="org.jboss.jetty.JettyService"
         name=":service=Jetty">
  -    <attribute name="JettyHome">../../jetty</attribute>
  -    <attribute name="Configuration">jetty.xml</attribute>
  -    <attribute name="WebDefault">../../jetty/etc/webdefault.xml</attribute>
  +    <attribute name="JettyHome">../</attribute>
  +    <attribute name="Configuration">../conf/default/jetty.xml</attribute>
  +    <attribute name="WebDefault">../conf/default/webdefault.xml</attribute>
       <attribute name="UnpackWars">true</attribute>
       <attribute name="PublishMBeans">true</attribute>
     </mbean>
  -  -->
   
     <!-- ==================================================================== -->
     <!-- JBossMQ                                                              -->
  @@ -695,4 +696,4 @@
     <!-- Add your custom MBeans here                                          -->
     <!-- ==================================================================== -->
   
  -</server>
  \ No newline at end of file
  +</server>
  
  
  
  1.1                  jboss/src/etc/conf/default/webdefault.xml
  
  Index: webdefault.xml
  ===================================================================
  <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" 
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd";>   
  
  <!-- This file contains the default settings for webapplications -->
  
  <web-app>
   <welcome-file-list>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>JSP</servlet-name>
      <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
      <load-on-startup>0</load-on-startup>
    </servlet>
  
    <servlet-mapping>
      <servlet-name>JSP</servlet-name>
      <url-pattern>*.jsp,*.jsP,*.jSp,*.jSP,*.Jsp,*.JsP,*.JSp,*.JSP</url-pattern>
    </servlet-mapping>
  
    <session-config>
      <session-timeout>60</session-timeout>
    </session-config>
  
    <security-constraint>
      <web-resource-collection>
        <web-resource-name>Read Only</web-resource-name>
        <url-pattern>/</url-pattern>
        <http-method>DELETE</http-method>
        <http-method>PUT</http-method>
      </web-resource-collection>
    </security-constraint>
  
    <!--
    <security-role>
        <role-name>roleName</role-name>
    </security-role>
    -->
  
  </web-app>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to