Announcement

Collapse
No announcement yet.

SSL - TOMCAT returns control characters!?

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • SSL - TOMCAT returns control characters!?

    <P>I have configured an tomcat ssl connector. At the last week everything works fine. But suddenly when I access the ssl-port, Tomcat returns only a few control character!</P><BR>

    <P>http://localhost:8443</P><BR>

    <P>Everything that is returned to the IE are a few control characters:</P><BR>

    <P> </P><BR>

    <P>There is no error message in the logs, certs seems to be fine. Any hint what is going wrong?</P><BR><BR>

    <Connector port="8443" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="c:/certs/.keystore" keystorePass="changeit" truststoreFile="c:/certs/cacerts"

    Apache Tomcat 5.5.9 Server; jdk1.5.0_04

  • #2
    Ok ... After I switched on the debug flag and browsed 24MB debug-information from tomcat I found a hint ...

    Handshake failed javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?

    as debug information and not as error.

    Here the solution: I just oversee (at this monday morning) the s and used "http" instead of "https"

    Comment

    Working...
    X