Subject: Re: WARP + SSL + request.isSecure() & request.getScheme()
From: "Sebastian Millies" <[EMAIL PROTECTED]>
 ===
If the problem is not a configuration mistake, but a connector bug
(in that it is not passing the correct information to Tomcat), you
could perhaps base all your decisions simply on the port  number
instead of the scheme? -- Sebastian


"zaid haque" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
news:[EMAIL PROTECTED]...
> Hi All,
>
> I have a problem of using request.isSecure() & request.getScheme()with
> Apache connected to Tomcat through WARP Connection. Actually it doesn't
work
> as it was intended.
>
> When I use request.isSecure() & request.getScheme()in the servlet/JSP
> running under SSL, it suppose to give true & https respectively for the
> statements. But it still gives as false & http. I have given the correct
> config in WARP Connector for Appache in server.xml. Following is the
> Connector statement I gave in my server.xml file.
>
>         <!-- the connector for https traffic -->
>         <Connector className =
> "org.apache.catalina.connector.warp.WarpConnector"
>           port="8007"
>           minProcessors="5"
>           maxProcessors="20"
>           scheme="https"
>           secure="true"
>           enableLookups="true"
>           appBase="webapps"
>           acceptCount="10"
>           debug="0"/>
>
>
> scheme & secure statements are accordingly given as Apache config
> documentation says.
>
> Does anyone have work around similar problem ? If you have, I would
> appreciate your help on the matter.
>
> Thanks in advance
>
> Zaid.
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>



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

Reply via email to