Hello

I am using Websphere 4.01, I did follow some of the instructions that were
posted for Websphere 3.5.x

Tried installing and running the struts-example.war on websphere, I see the
login.jsp page, but if i try to login, i see the url chaning to
<...>/login.do but then I get a page not found on my browser.

After some further testing, i found that I can access some servlets by name
as long as they are mapped to "/servlet/...." but since the action servlets
are mapped as "*.do", it does'nt seem to like it.

I did change the ibm-web-ext.xmi file to include fileServingEnabled=true (
and still my static pages never showed up) and also to enable looking up
servlets by classname.

Any help or tips would be greatly appreciated.


thanks
rajiv

this does'nt seem to work-->
<servlet-mapping id="ServletMapping_1">
         <servlet-name>action</servlet-name>
         <url-pattern>*.do</url-pattern>
</servlet-mapping>

this works-->
<servlet-mapping id="ServletMapping_1">
         <servlet-name>MPIServerConfigServlet</servlet-name>
         <url-pattern>/servlet/mpiconfig</url-pattern>
</servlet-mapping>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to