I will give you the exact details below.
I have folder called mvc in the /defaultwebapp ( /defaultwebapp/mvc) inside mvc folder i have one jsp page its name is Eshop.jsp in the form tag i have given action="/quickShoppingServlet".( Note I have give the mapping name of the servlet my original name of the servlet is ShoppingServlet)
I have servlet in /defaultwebapp/classes/ShoppingServlet. The ShoppingServlet imports a class name cd which is in the folder name called /defaultwebapp/classes/shopping/cd/
I have changed my web.xml
<servlet-name>ShoppingServlet</servlet-name>
<servlet-class>ShoppingServlet</servlet-class>.
<servlet-mapping>
<servlet-name>ShoppingServlet</servlet-name>
<url-pattern>/quickShoppingServlet</url-pattern>
</servlet-mapping>
I have give the quickShoppingServlet in the form tag.
Can now figure out the problem. I am still couldnt access the servlet from the jsp. Everytime i chagned in the web.xml i restarted weblogic default server (is it required to restart the server everytime? i am using trail version weblogic6.1)