Hi,

I'm following the instrutions found in :
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/index.html

I'm trying to install my first webapp in tomcat but a problem occurs :

[EMAIL PROTECTED] tomcat-test]$ ant install
Buildfile: build.xml
 
prepare:
 
compile:
 
install:
  [install] <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd";>
  [install] <html lang="fr">
  [install] <head>
  [install] <title>Centre de Commande de POPFile</title>
  [install] <link rel="stylesheet" type="text/css"
href="skins/SimplyBlue.css" title="SimplyBlue">

[...]

  [install] </body>
  [install] </html>
 
BUILD FAILED
file:/home/quetzalcoatl/Documents/www/tomcat-test/build.xml:364:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd";>
 
Total time: 2 seconds
[EMAIL PROTECTED] tomcat-test]$ 

Here, we can see the index page of popfile (a mail classifier proxy)
which is under the port 8080 of my computer.

I've changed the file $CATALINA_HOME/conf/server.xml so tomcat uses the
port 8081 instead of 8080 :

 <Connector port="8081"
               maxThreads="150" minSpareThreads="25"
maxSpareThreads="75"
               enableLookups="false" redirectPort="8443"
acceptCount="100"
               debug="0" connectionTimeout="20000"
               disableUploadTimeout="true" />


But 'ant install' always output the same error message. Can somebody
help me ?

Thanks


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to