Hello. I'm starting to have a headache at solving this. I work in Eclipse IDE and run the project on tomcat server.
What i do is this:
i have a form, like this:
<form method="GET"
action="http://localhost:8080/BookShelf/ComputeSearch">
<p>Book <input type="text" name="book" size="7"/></p>
<p>Chapter <input type="text" name="chapter" size="5"/></p>
<p>Verse <input type="text" name="verse" size="6"/></p>
<p> <input type="submit" value="Send"/>
<input type="reset" value="Reset"/>
</p>
</form>
Where ComputeSearch is a servlet, located in BookShelf/com/servlets/ . The problem is that the server gives me an error saying :
HTTP Status 404 - /BookShelf/ComputeSearch
type Status report
message /BookShelf/ComputeSearch
description The requested resource (/BookShelf/ComputeSearch) is not available.
Apache Tomcat/6.0.18
I also tried writing <form method="GET"
action="http://localhost:8080/BookShelf/com/servlets/ComputeSearch">
which gave the same error.
:'( . Pls would anyone tell me what i'm missing!