Jeff Chuang wrote:
> To make port 80 use APR and port 443 NOT use APR, I have tried it
> several times, without any luck. After tomcat starts, port 80 is fine,
> but connections  to port 443 are always timeout. It looks from the log
> the Http11BaseProtocol was not used on port 443. The log looks like:
[...]

I've just tried to configure a Connector which uses the Http11BaseProtocol by 
setting the attribute class="org.apache.coyote.http11.Http11BaseProtocol" on 
the Connector element. If the nativ lib was present, Http11AprProtocol was 
used nevertheless.
Maybe my guess that APR is always used when the native lib is present wasn't 
that wrong.

BTW: the HTTPS configuration attributes needed for a Base Connector differ 
from those needed for an Apr Connector. Since APR is used for your Connector 
on port 443 but the config is suited for Base, you have - after all - 
configured a normal HTTP Connector on port 443. That's what the timeout 
you're seeing stems from. If you do
http://<your host>:443
instead of
https://<your host>
it will propably work - but the connection will not be encrypted obviously.
Of course this doesn't help you, it's simply meant as an explanation.

Regards
  mks

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to