Modification on Tomcat Config for AwareIM
When calling the http://localhost:8080/AwareIM without logon.do, logon.jsp or whatever a directory listing is shown to the user.
To avoid this go to
$AwareIMroot$/Tomcat/webapps/AwareIM/WEB-INF
open web.xml in any text editor
search for
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
now change this to
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
In order to make these changes active you have to restart Tomcat.
Since the default index.html shows the message "Loading....Please Wait" it's likely that you'd like to change this into a starting page for you application.
- Printer-friendly version
- Login to post comments
