1

アプリケーションで SSL を使用すると問題が発生します。私は次のことをしました:

次の文章を security-contraint タグに追加しました。

 <user-data-constraint>
        <transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>

TomcatのServer.xmlに以下を追加しました

<Connector port="8443"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="true" disableUploadTimeout="true"
acceptCount="100" debug="0" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="c:/keystore.key"
keystorePass="mypassword" />

現在

https://localhost:8443/Appname/page.jsp

私は次のことを得る

Secure Connection Failed
An error occurred during a connection to localhost:8443.

SSL received a record that exceeded the maximum permissible length.

(Error code: ssl_error_rx_record_too_long)
  The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
  Please contact the website owners to inform them of this problem. Alternatively, use the command found in the help menu to report this broken site.

助言がありますか ?

4

2 に答える 2

4

コネクタで に設定SSLEnabledするtrue必要があります。

<Connector port="8443"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="true" disableUploadTimeout="true"
acceptCount="100" debug="0" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="c:/keystore.key"
keystorePass="mypassword"
SSLEnabled="true" />
于 2012-06-28T13:54:58.600 に答える
0

また、使用しているブラウザによっても異なります。私自身、ローカル環境で同じ問題が発生しました。Firefox と Chrome で試してみたところ、この問題に直面しました。しかし、Google でカップルの投稿を読んだ後に Internet Explorer で試してみたところ、問題なく動作しました。

-ありがとう

于 2014-07-08T09:07:59.353 に答える