I have a peculiar problem. We have welcome file list in web.xml. When we deploy the war on tomcat / JBoss and hit our URL without the html file in welcome file list, the app is redirected properly. However the same redirection is not happening in Websphere. Do we have to do anything else to make it work on Websphere?
Snippet of web.xml -
<filter>
<filter-name>AppFilter</filter-name>
<filter-class>com.proj.filters.AppFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>AppFilter</filter-name>
<url-pattern>/index.html</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
What we expect is when we hit application url, it should be appeded with welcome file and my filter should be invoked. This is working on JBoss, but not on Websphere.