So you are saying if I am trying to use tomcat with Virtual Hosts, I can connect to the host box with HttpConnector through port 8080
but at the same time use Warp to serve up servlets and jsp pages (in a specified dsrectory) through 8009 with the Warp Connector then normal html pages through apache? --chad On Thu June 20 2002 2:51 pm, Milt Epstein wrote: > 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] -- Chad Kellerman Alabanza Inc. Jr. Systems Administrator 10 E. Baltimore Street Baltimore, Md 21202 -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
