Files to be edited
\HELPDESKc$Program FilesSysAidServertomcatconfserver.xml
\HELPDESKc$Program FilesSysAidServertomcatconfweb.xml
File: server.xml
Edit line 71 with the command :
<Connector />
possibly check and add also:
<Connector>
File: web.xml
Add the following information to the end of the file, just before "/web-app>"
<!–redirect https–>
<security-constraint>
<web-resource-collection>
<web-resource-name>Protected Context</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<!– auth-constraint goes here if you requre authentication –>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>