Quantcast
Channel:
Viewing all articles
Browse latest Browse all 43849

Wiki Page: Why does the XML in the "Configuring Secure Connections with Tomcat Web Server" of the SCAdminGuide guide fail?

$
0
0
The XML in the SCAdminGuide ("Configuring Secure Connections with Tomcat Web Server") fails because the syntax is wrong. It currently reads: minProcessors="5" maxProcessors="75" enableLookups="true" disableUploadTimeout="true" acceptCount="100" debug="0" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS"/ However this causes issue for the TM ART parser when used. To ensure the XML works correctly it is necessary to make the following changes: Comment out and then add a space in between ... Tomcat5.CoyoteConnector" and port="8443" . Once this is completed the XML should appear as: minProcessors="5" maxProcessors="75" enableLookups="true" disableUploadTimeout="true" acceptCount="100" debug="0" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="C:\Documents and Settings\Default User\.keystore"/ It is important to change this XML before following the rest of the steps in the "Configuring Secure Connections with Tomcat Web Server" section of the SCAdminGuide. The documentation has been updated to reflect these changes in TM ART 3.6 .

Viewing all articles
Browse latest Browse all 43849