HI,
I am trying to include a
servlet from a
JSP page. Currently, we have quite a few servlets that we need to include on different JSP pages, so this is not just "rewrite the servlet as a jsp" type of project. I have tried the <jsp:include ...> tag, the <c:include ...> tag, the <%@ import ...> tag, and using the RequestDispatcher.include(...) method, all of which have failed. The error message on the log is:
"... handle-processed reports: HTTP2205: The request method is not applicable to the requested resource."
I am not sure if it is a configuration error in the servlet (which is why I posted here) or a problem with the JSP page. It may also be a server configuration error (We are running Sun ONE Web Server). Does anyone know why this occurrs?
Thanks in advance,
Steve
P.S.- Please do not question "why" we are using servlets with JSP pages. We have a variety of web apps using servlets and are just getting into using JSP pages.