My web app has been working fine for weeks switching from 8080 to 8443..

however.. i've now reconfigured it to port 80 and it after submitting to my
struts action servlet.. i get page not found..
if i switch it back to 8080 its fine..

anyone know if im doing sometihng wrong?

DETAILS: - Server.xml
<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -->

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"

port="80" minProcessors="5" maxProcessors="75"

enableLookups="false" redirectPort="8443"

acceptCount="100" debug="0" connectionTimeout="20000"

useURIValidationHack="false" disableUploadTimeout="true" />

<!-- Note : To disable connection timeouts, set connectionTimeout value

to -1 -->





<!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"

port="8443" minProcessors="5" maxProcessors="75"

enableLookups="false"

acceptCount="100" debug="0" scheme="https" secure="true"

useURIValidationHack="false" disableUploadTimeout="true">

<Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"

clientAuth="false" protocol="TLS" />

</Connector>

---------- <snip>

<Host name="james_laptop" debug="0" appBase="webapps"

unpackWARs="true" >

    <Logger className="org.apache.catalina.logger.FileLogger"

        directory="logs" prefix="localhost_log." suffix=".txt"

        timestamp="true"/>

    <Context path="" docBase="MyApp" debug="0" reloadable="true">


    <Logger className="org.apache.catalina.logger.FileLogger"

        prefix="james_laptop_log." suffix=".txt"

        timestamp="true"/>

    <Manager className="org.apache.catalina.session.PersistentManager"

        debug="0"

        saveOnRestart="true"

        maxActiveSessions="-1"

        minIdleSwap="-1"

        maxIdleSwap="-1"

        maxIdleBackup="-1">

        <Store className="org.apache.catalina.session.FileStore"/>

    </Manager>

    </Context>

</Host>




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

Reply via email to