christopher baus wrote:
>
> I am having a problem properly identify the scheme (http or https) when
> using the combination in the subject. When I do the following
>
> https://localhost/servlets/testScheme
>
> I always get "http" and never "https"
>
> I attached the simple test applet...
This is working here for me (port 443). which TCP port are you using ?
in JServConnection.java :
public String getScheme() {
// FIXME: We just don't have this information available. We'll
// look at the port, and return https if it's 443, but that's
// not a real solution.
// Mike: There is no generic solution available in apache
// let's leave it as below and wait.
if (getServerPort() == 443) {
return "https";
} else {
return "http";
}
}
Jean-Luc
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]