Yes, it's listening on port 8008.

The thing is that it WORKS OK "almost everytime" :-/ BUT, sometimes and
without apparent reason it stops working and I have to restart apache and
tomcat to get it working again. SOMETIMES it works just waiting about 10 of
15 seconds and reloading the page. It's really annoying because it's a
random behavior. Sometimes I can reproduce the error when I reppeatidly and
quickly (sure bad english writing) reload the page.

This is my server.xml file (real IP replaced with xxx.xxx.xxx.xxx)

Bytes
DAC

----- Original Message -----
From: "Chris Davies" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Tuesday, February 11, 2003 11:27 AM
Subject: Re: mod_webapp random error


>
> Hi,
>
> What it really means by "Web Application Not Deployed" is cannot connect
to Tomcat.
>
> Check your server.xml for a valid Warp connector.
>
> Thanks,
> C.Davies
>
> Quoting Diego Algorta Casamayou <[EMAIL PROTECTED]>:
>
> > Hi all.
> >
> > I've just subscribed to the list.
> >
> > I'm using apache 1.3.23, tomcat 4.0.1 and mod_webapp for connecting both
> > of them. All this just came in the CDs of SuSE Linux 8.0.
> >
> > The thing is, I'm having an error that I can't fix and don't know why
> > it's happening. It happens randomly.
> >
> > The error shows this in the browser:
> >
> > ---------------------------------------------------
> > WebApp: Error 404
> > (File: wa_request.c Line: 198)
> >
> > Web-application not yet deployed
> > ---------------------------------------------------
> >
> > I've searched the archives of this list but couldn't find anything
> > related.
> >
> > Any suggestions?
> >
> > I'm considering dropping mod_webapp and try mod_jk, or mod_jk2. What's
> > your advice here?
> >
> > Thank you.
> >
> > Bytes
> > DAC
> >
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
<Server port="8005" shutdown="SHUTDOWN" debug="0">
  <Service name="Tomcat-Standalone">
    <Connector className="org.apache.catalina.connector.http.HttpConnector"
               port="8080" minProcessors="5" maxProcessors="75"
               enableLookups="true" redirectPort="8443"
               acceptCount="10" debug="0" connectionTimeout="60000"/>
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
               port="8009" minProcessors="5" maxProcessors="75"
               acceptCount="10" debug="0"/>
    <Engine name="Standalone" defaultHost="xxx.xxx.xxx.xxx" debug="0">
      <Logger className="org.apache.catalina.logger.FileLogger"
              prefix="catalina_log." suffix=".txt"
              timestamp="true"/>
      <Realm className="org.apache.catalina.realm.MemoryRealm" />
      <Host name="xxx.xxx.xxx.xxx" debug="0" appBase="webapps" unpackWARs="true">
        <Valve className="org.apache.catalina.valves.AccessLogValve"
                 directory="logs"  prefix="localhost_access_log." suffix=".txt"
                 pattern="common"/>
        <Logger className="org.apache.catalina.logger.FileLogger"
                 directory="logs"  prefix="localhost_log." suffix=".txt"
	        timestamp="true"/>
        <Context path="/manager" docBase="manager" 
         debug="0" privileged="true"/>
        <Context path="/examples" docBase="examples" debug="0"
                 reloadable="true">
          <Logger className="org.apache.catalina.logger.FileLogger"
                     prefix="localhost_examples_log." suffix=".txt"
        	  timestamp="true"/>
          <Ejb   name="ejb/EmplRecord" type="Entity"
                 home="com.wombat.empl.EmployeeRecordHome"
               remote="com.wombat.empl.EmployeeRecord"/>
          <Environment name="maxExemptions" type="java.lang.Integer"
                      value="15"/>
          <Parameter name="context.param.name" value="context.param.value"
                     override="false"/>
          <Resource name="jdbc/EmployeeAppDb" auth="SERVLET"
                    type="javax.sql.DataSource"/>
          <ResourceParams name="jdbc/EmployeeAppDb">
            <parameter><name>user</name><value>sa</value></parameter>
            <parameter><name>password</name><value></value></parameter>
            <parameter><name>driverClassName</name>
              <value>org.hsql.jdbcDriver</value></parameter>
            <parameter><name>driverName</name>
              <value>jdbc:HypersonicSQL:database</value></parameter>
          </ResourceParams>
          <Resource name="mail/Session" auth="Container"
                    type="javax.mail.Session"/>
          <ResourceParams name="mail/Session">
            <parameter>
              <name>mail.smtp.host</name>
              <value>localhost</value>
            </parameter>
          </ResourceParams>
        </Context>

      </Host>

    </Engine>

  </Service>

  <Service name="Tomcat-Apache">

    <Connector className="org.apache.catalina.connector.warp.WarpConnector"
     port="8008" minProcessors="5" maxProcessors="75"
     enableLookups="true"
     acceptCount="10" debug="0"/>

    <Engine className="org.apache.catalina.connector.warp.WarpEngine"
     name="xxx.xxx.xxx.xxx" debug="0" appBase="webapps">

      <Logger className="org.apache.catalina.logger.FileLogger"
              prefix="apache_log." suffix=".txt"
              timestamp="true"/>

      <Realm className="org.apache.catalina.realm.MemoryRealm" />

    </Engine>

  </Service>

</Server>

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

Reply via email to