https protocol not recognised

Hi,

I deployed my web application as war base in tomcat webserver.

The request for login screen goes through https protocol.

But the browser(IE 6 and mozilla) shows the error it cannot connect to the webserver. But does it through http protocol.

How to solve this.

Thanks in advance,

Regards,

Muthu

[347 byte] By [mclarena] at [2007-10-3 2:59:33]
# 1
Did you set up HTTPS in your Tomcat?
CeciNEstPasUnProgrammeura at 2007-7-14 20:49:09 > top of Java-index,Java Essentials,Java Programming...
# 2
i setup ssl certificate in tomcat. Do i need to do anything other than this.Thanks and Regards,mclaren
mclarena at 2007-7-14 20:49:09 > top of Java-index,Java Essentials,Java Programming...
# 3
Firewall?
CeciNEstPasUnProgrammeura at 2007-7-14 20:49:09 > top of Java-index,Java Essentials,Java Programming...
# 4
1.) By default the SSL connector is not enabled. You need to uncomment it in server.xml2.) Note that by default the connector listens on port 8443, so you'd need to access https://myhost:8443/
JoachimSauera at 2007-7-14 20:49:09 > top of Java-index,Java Essentials,Java Programming...
# 5
Hi,Thank you.. i uncommented the entry in server.xml and it worked.Thanks for your supportRegards,mclaren
mclarena at 2007-7-14 20:49:09 > top of Java-index,Java Essentials,Java Programming...