Allen,

you ask "isn't that what the connector is supposed to do",
but the connector is in Tomcat, not in your web server.
It is the web server software that is monitoring port 80,
and that is where your browser sends requests to by default,
so the request must get past the web server first.
To do that you need to tell the web server where to send them, namely to
your Tomcat port.
I think this accounts for the behaviour you told about, namely that
Tomcat responds fine when you specify the port number in your URL.

-Bill

-----Original Message-----
From: Wilson, Allen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 07, 2004 11:32 AM
To: Tomcat Users List; [EMAIL PROTECTED]
Subject: RE: Connecting the HTTP Server and Tomcat


Bill..thanks for the reply...

I will read through the link you provide but isn't that what the
connector is supposed to do.

My understanding what that the Apache HTTP server would detect what the
request was (Java or not) and pass it on to Tomcat.
Is this not what the specification of /portal/* ajp13 in the
configuration does.

This is what I got from the document at:

http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk.quickhowto.html

Here is a little from one of the pages in that area... (
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/aphowto.html )

In a nutshell a web server is waiting for client HTTP requests. When
these requests arrive the server does whatever is needed to serve the
requests by providing the necessary content.

Adding a servlet container may somewhat change this behavior. Now the
web server needs also to perform the following:

Load the servlet container adapter library and initialize it (prior to
serving requests).
When a request arrives, it needs to check and see if a certain request
belongs to a servlet, if so it needs to let the adapter take the request
and handle it.
The adapter on the other hand needs to know what requests it is going to
serve, usually based on some pattern in the request URL, and to where to
direct these requests.


Is this not correct...or am I misunderstanding it



-----Original Message-----
From: Bill Bruns [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 07, 2004 12:26 PM
To: Tomcat Users List
Subject: RE: Connecting the HTTP Server and Tomcat


Allen,

do you have the web server configured to throw the requests over to
Tomcat?
In other words, have either Proxy support or else URL Rewriting turned
on in
the web server?
Otherwise your HTTP requests default to port 80, so they will be eaten
by
the web server and never reach Tomcat,
since Tomcat is listening on ports that the HTTP requests do not come to
by
default.

Have you looked at
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/proxy-howto.html
- Bill

-----Original Message-----
From: Wilson, Allen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 07, 2004 8:54 AM
To: Tomcat Users List
Subject: RE: Connecting the HTTP Server and Tomcat


Okay...that looks similar to the tomcat 4 information I have....is your
connector working correctly?

-----Original Message-----
From: Emerson Cargnin [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 06, 2004 6:06 PM
To: Tomcat Users List
Subject: Re: Connecting the HTTP Server and Tomcat


My configuration is for tomcat 5:

<Service name="Catalina">
     <Connector acceptCount="100" connectionTimeout="20000"
disableUploadTimeout="true" port="8080" redirectPort="8443">
     </Connector>

     <Connector port="8009"
                enableLookups="false" redirectPort="8443" debug="0"
                protocol="AJP/1.3" />

     <Engine defaultHost="localhost" name="Catalina">
       <Host appBase="webapps" name="localhost">
         <Logger className="org.apache.catalina.logger.FileLogger"
prefix="localhost_log." suffix=".txt" timestamp="true"/>
...
...

Wilson, Allen wrote:
> Here are the lines.....
>
>                 <Connector
> className="org.apache.catalina.connector.http.HttpConnector"
>                        port="8080" minProcessors="5"
maxProcessors="75"
>                        enableLookups="true" redirectPort="8443"
>                        acceptCount="100" debug="0"
> connectionTimeout="20000" />
>
>                 <!-- 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"/>
>
> Let me know if there is something that is incorrect.....
>
> -----Original Message-----
> From: Emerson Cargnin [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 06, 2004 4:28 PM
> To: Tomcat Users List
> Subject: Re: Connecting the HTTP Server and Tomcat
>
>
> You said you can connect through port 8009 through the browser???
> The jk protocol is not http, so if the configuration was allright you
> can't connect through 8009 as http. Maybe the error is at your
> server.xml...
>
> Wilson, Allen wrote:
>
>>Thanks but this is on a Windows system and will not help...I am on a
>>Solaris and I have looked at documents like this before and they still
>>do not give me a definitive way of setting everything and testing
>
> it...
>
>>Right now I have the HTTP server (port 80), Tomcat (port 8080), and
>
> the
>
>>connector (8009) running. I even looked at the netstat to see if each
>>port was available...and they were.
>>
>>When a do the home page request (http://myserver.com) it works
>>fine...but if I request the page for the Jetspeed Portal
>>(http://myserver.com/portal), I get an error. If I request the portal
>>page through port 8080 it works fine. If I request the same page on
>
> 8009
>
>>it works fine.
>>
>>In all cases there were no entries in my mod_jk.log.
>>
>>I am looking for something that will outline the steps for me on a
>>Solaris machine or at least give me a better way to diagnose what I am
>>doing wrong....
>>
>>
>>
>>-----Original Message-----
>>From: kwilding [mailto:[EMAIL PROTECTED]
>>Sent: Tuesday, April 06, 2004 10:55 AM
>>To: 'Tomcat Users List'
>>Subject: RE: Connecting the HTTP Server and Tomcat
>>
>>
>>http://www.greenfieldresearch.ca/technical/jk2_config.html
>>
>>This was a really good starting point. Ignore the fact it talks abut
>>windows, I imstaled on SuSE8.2 using apache2.0.48 and both tomcat 4
>
> and
>
>>5
>>Kevan
>>
>>-----Original Message-----
>>From: Wilson, Allen [mailto:[EMAIL PROTECTED]
>>Sent: 06 April 2004 16:42
>>To: Tomcat Users List
>>Subject: Connecting the HTTP Server and Tomcat
>>
>>
>>Good morning....
>>
>>Can any provide some assistance on connecting the HTTP server and
>
> Tomcat
>
>>together. I am using HTTP Server 2.0.48 and Tomcat-4.1.18 on a Sun
>>Solaris
>>machine. I think I have everything in place but when the only way I
>
> can
>
>>reach the Tomcat stuff is my specifying the port number in the URL.
>>
>>Can someone point me in the direction of some "How to connect Apache
>
> and
>
>>Tomcat for Dummies" instructions that will provide me some clear steps
>>and
>>methods for checking everything out.
>>
>>Thanks...and any help is appreciated.
>>
>>Allen
>>
>>
>>
>>
>
>
------------------------------------------------------------------------
>
>>This message may contain proprietary or confidential company
>
> information.
>
>>Any unauthorized use or disclosure is prohibited.
>>
>>
>>
>>
>>
>
>
------------------------------------------------------------------------
>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
------------------------------------------------------------------------
>
> This message may contain proprietary or confidential company
information.
> Any unauthorized use or disclosure is prohibited.
>
>
>
>
>
------------------------------------------------------------------------
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


--
Emerson Cargnin
Analista de Sistemas
Setor de Desenvolvimento de Sistemas - TRE-SC
tel : (048) - 251-3700 - Ramal 3181

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



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



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

Reply via email to