> > I can change any references internal to my system (index.html, etc) to > > use "https", but some clients have bookmarked the servlet page, rather > > than the access page. Is there a way to redirect > > "http://xx.xx.xx.xx:8080/index.html" to *actually* call up the page > > "https://xx.xx.xx.xx:8080/index.html" ? > > Can't you make whatever handles the http requests on 8080 return a redirect > to the same page but with an https protocol request?
You can't have http and https listen on the same port since https has an entire SSL handshake that must take place before the GET/POST transfer takes place. But you could have the 8080 redirect to something like 8081 with HTTPs running on that instead. Of course, the "correct" way is to use port 80 for http, and redirect to 443 for https, since all other ports will really have problems for just about anybody with a firewall "correctly" configured. David -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
