| Author |
Basic Question-hfsj-scwcd
|
Ajit Sawant
Ranch Hand
Joined: Nov 26, 2008
Posts: 33
|
|
Hello,
I tried running the basic form.html as per Head First SCWCD (Page 77). The step4 instructs to put web.xml under ../WEB-INF to test form.html. But with web.xml in place, Apache Tomcat(7.0.23) gives the following error
type Status report
message /Beer-v1/form.html
description The requested resource (/Beer-v1/form.html) is not available.
--------------------------------------------------------------------------------------
When I delete the file web.xml (not directory WEN-INF), it works fine. The page can be accessed.
Is it because the resource requested is .html and Apcache Tomcat's Web Server doesn't need web.xml but if it is available it fails to access the html resource?
Can somebody please explain this?
Thanks,
Ajit
|
 |
Thiago V Palmeir
Greenhorn
Joined: Jul 23, 2012
Posts: 1
|
|
Tries do so,
<form action="${pageContext.request.contextPath}/ServetName" method="post">
<div align="center">
</div>
<div align="center">
<br /><input type="submit" value="Submit" />
</div>
</form>
The secret is in ${pageContext.request.contextPath}
|
 |
 |
|
|
subject: Basic Question-hfsj-scwcd
|
|
|