I'm working on an app for a local school and I am getting "The requested resource is not available."
The entries in web.xml are:
<servlet>
<servlet-name>AccountUpdateServlet</servlet-name>
<servlet-class>edu.staug.lunchtime.servlet.UpdateAccountServlet</servlet-class>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>AccountUpdateServlet</servlet-name>
<url-pattern>/servlet/updateAccount</url-pattern>
</servlet-mapping>
The <form> line in the calling page is:
<form method="POST" enctype="application/x-www-form-urlencoded" action="/servlet/updateAccount" >
I'm clearly missing something that is completely obvious and I would appreciate some kind soul clueing me in.
Thank you,
Donald