User: jules_gosnell
  Date: 02/01/18 16:49:50

  Modified:    jetty    README build.xml
  Log:
  a first attempt at a full hook-up to Sacha's Clustered HttpSession support
  
  Revision  Changes    Path
  1.7       +3 -9      contrib/jetty/README
  
  Index: README
  ===================================================================
  RCS file: /cvsroot/jboss/contrib/jetty/README,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- README    2001/11/25 14:52:42     1.6
  +++ README    2002/01/19 00:49:50     1.7
  @@ -1,4 +1,6 @@
  +WARNING: This needs updating...
   
  +
   This plugin integrates Jetty with JBoss.
   
   Jetty is wrapped up as a JettyService MBean (deployed in
  @@ -18,19 +20,11 @@
   deploy the plugin then run the WebIntergration test suite. You need a
   JBoss up and running.
   
  -N.B.
  -----
  -
  -For on-the-fly JSP compilation, you will need to start JBoss with
  -$JAVA_HOME/lib/tools.jar on your JBOSS_CLASSPATH...
  -
   Work in progress
   ----------------
   
   JSPs - compiling JSPs is tricky because Jasper needs all necessary
  -jars on it's classpath and the tools jar available.
  -
  -We can't distribute the tools.jar with Jetty.
  +jars on it's classpath.
   
   Jetty is only aware of the classes and jars within the war - so if you
   are sharing classes across an ear, this is currently not supported.
  
  
  
  1.24      +8 -0      contrib/jetty/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/contrib/jetty/build.xml,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- build.xml 2002/01/17 02:17:36     1.23
  +++ build.xml 2002/01/19 00:49:50     1.24
  @@ -168,10 +168,18 @@
         <pathelement path="${jboss.server.lib}/jboss.jar"/>
       </path>
   
  +     <!-- Cluster -->
  +     <property name="jboss.cluster.root" value="${project.root}/cluster/output"/>
  +     <property name="jboss.cluster.lib" value="${jboss.cluster.root}/lib"/>
  +     <path id="jboss.cluster.classpath">
  +       <pathelement path="${jboss.cluster.lib}/jbossha-httpsession.sar"/>
  +     </path>
  +
       <!-- The combined dependent module classpath -->
       <path id="dependentmodule.classpath">
         <path refid="jboss.j2ee.classpath"/>
         <path refid="jboss.server.classpath"/>
  +      <path refid="jboss.cluster.classpath"/>
       </path>
   
       <!-- ===== -->
  
  
  

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

Reply via email to