On Thu, 20 Jun 2002, chad kellerman wrote: > If you are using mod webapp do you need? > > <Connector className="org.apache.catalina.connector.http.HttpConnector" > port="8080" minProcessors="5" maxProcessors="75" > enableLookups="false" redirectPort="8443" > acceptCount="10" debug="0" connectionTimeout="60000"/> > > to be able to connect to port 8080. > > Can't you do it this way? > > <Connector className = "org.apache.catalina.connector.warp.WarpConnector" > port="8080" > minProcessors="2" > maxProcessors="10" > scheme="http" > secure="false" > enableLookups="true" > acceptCount="10" > debug="0"/> > > > If my server.xml file does not have any reference to > HttpConnector I can't seem to connect to port 8080.
HttpConnector is for using Tomcat standalone (i.e. without a web server), WarpConnector is for using Tomcat with mod_webapp to connect to the web server. You can use both. But if you do make sure you use different ports -- the shipped default for HttpConnector is 8080, for WarpConnector I think it's 8009. (Either way, I'd suggest not using 8080 for WarpConnector, because it'd be confusing.) Milt Epstein Research Programmer Systems and Technology Services (STS) Campus Information Technologies and Educational Services (CITES) University of Illinois at Urbana-Champaign (UIUC) [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
