time for a silly question...


file - web.xml


<servlet>
            <servlet-name>TestAction</servlet-name>
           
<servlet-class>ActionServlet</servlet-class>
</servlet>


<servlet-mapping>
            <servlet-name>TestAction</servlet-name>
            <url-pattern>/TestAction</url-pattern>  
    </servlet-mapping>


ActionServlet - web-inf\classes

Context path - framework

a) when my url is
http:...:8080/framework/servlet/TestAction - it is
working fine

b) but when i make change to servlet mapping to above
web.xml as

<servlet-mapping>
            <servlet-name>TestAction</servlet-name>
            <url-pattern>/action</url-pattern>  
    </servlet-mapping>



and invoke
http:...:8080/framwork/servlet/action - im getting
page cannot be found

restarted my server...






__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to