What is the location of servlets?
0 pts.
0
Q:
What is the location of servlets?
I have not been successful in executing a servlet whose physical location is C:MyWorkMyProjectclassesmyServlet.class. In the jsp file I have
<form action="../classes.myServlet" method="post">. But, when I run the project within JDeveloper and when tried to execute the servlet, I get "The Page Cannot be Found" error. I can see the OC4JServer starts running and the URL which it points to is "http://10.8.10.185:7969/classes.myServlet". I am confused not knowing where to keep the servlet. Any help will be appreciated.
ASKED: Jun 20 2006  9:15 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
105 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
You have to use the string that you have written in <url-pattern> in the form action
ie.

<form action="<url-pattern string>" method=post>
Last Answered: Aug 28 2009  4:49 AM GMT by Ashish2   105 pts.
Latest Contributors: BillBB   0 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0