Hi,
If the address in your browser is some thing like this
http://localhost:8084/myservlet. This url would like this if you are using Netbeans IDE.
Then changing the code in your jsp from <FORM action="/myServlet" method="GET"> to
<FORM action="[
YOUR PROJECT NAME]/myServlet" method="GET">
will help you call your servlet
Binu Narayanan