Changeset 4176


Ignore:
Timestamp:
Mar 14, 2008, 11:10:07 AM (15 years ago)
Author:
Nicklas Nordborg
Message:

Fixes #948: Change web application to servlet api 2.5 instead of 2.4

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r4154 r4176  
    13231323      <link href="http://www.hibernate.org/hib_docs/v3/api"/>
    13241324      <link href="http://www.jdom.org/docs/apidocs/" />
    1325       <link href="http://java.sun.com/products/servlet/2.2/javadoc/" />
     1325      <link href="http://java.sun.com/products/servlet/2.5/docs/servlet-2_5-mr2/" />
     1326      <link href="http://java.sun.com/products/jsp/2.1/docs/jsp-2_1-pfd2/" />
    13261327      <link href="http://www.singularsys.com/jep/doc/javadoc/" />
    13271328      <link href="http://www.jfree.org/jfreechart/api/gjdoc/" />
  • trunk/doc/3rd-party-components.txt

    r4151 r4176  
    9494
    9595More info : http://java.sun.com/products/servlet/index.jsp
    96 Version   : 2.4
     96Version   : 2.5
    9797License   : N/A
    9898Jar files : jsp-api.jar, servlet-api.jar
  • trunk/doc/src/docbook/admindoc/installation_upgrade.xml

    r4148 r4176  
    6666  <sect1 id="installation_upgrade.upgrade">
    6767    <title>Upgrade instructions</title>
     68
     69    <important id="tomcat6">
     70      <title>BASE 2.7 requires Tomcat 6 or higher</title>
     71      <para>
     72        If you are upgrading from older BASE versions to BASE 2.7 or higher
     73        you must also make sure that you are running Tomcat 6 or higher.
     74        Earlier BASE versions only required Tomcat 5.5. If you are not
     75        already running Tomcat 6 you need to upgrade.     
     76      </para>
     77    </important>
    6878
    6979    <important id="dropindexes">
     
    122132            If the BASE application is not shut down already, it is
    123133            time to do it now. Do something like <command>sudo
    124             /etc/init.d/tomcat5.5 stop</command>
     134            /etc/init.d/tomcat6.0 stop</command>
    125135          </para>
    126136        </listitem>
     
    247257            As tomcat user, remove cached files and directories. Do
    248258            something like
    249 <programlisting>cd /usr/share/apache-tomcat-5.5.15/
     259<programlisting>cd /usr/share/apache-tomcat-6.0.14/
    250260rm -rf work/Catalina</programlisting>
    251261          </para>
     
    258268          <para>
    259269            Start the tomcat server: <command>sudo
    260               /etc/init.d/tomcat5.5 start</command>
     270              /etc/init.d/tomcat6.0 start</command>
    261271          </para>
    262272        </listitem>
     
    646656        <listitem>
    647657          <para>
    648             Download and install tomcat 5.5.16 or later, available
     658            Download and install tomcat 6.0.14 or later, available
    649659            from <ulink
    650             url="http://jakarta.apache.org/tomcat/" />
     660            url="http://tomcat.apache.org" />
    651661            <important>
    652662              You MUST make sure that Tomcat uses the SERVER mode of
     
    668678          <para>
    669679            For more information about Tomcat options see
    670             <ulink url="http://www.chemaxon.com/jchem/doc/admin/tomcat.html" />.
     680            <ulink url="http://tomcat.apache.org/tomcat-6.0-doc/index.html" />.
    671681          </para>
    672682        </listitem>
     
    10291039<programlisting># The following lines makes apache aware of the location of
    10301040# the /base2 context
    1031 Alias /base2 "/srv/www/tomcat5/base/webapps/base2"
    1032 &lt;Directory "/srv/www/tomcat5/base/webapps/base2"&gt;
     1041Alias /base2 "/srv/www/tomcat6/base/webapps/base2"
     1042&lt;Directory "/srv/www/tomcat6/base/webapps/base2"&gt;
    10331043Options Indexes FollowSymLinks
    10341044allow from all
Note: See TracChangeset for help on using the changeset viewer.