Jack J. Coleman wrote:
I do not have any Location directives and I am not using auto aliasing.
My httpd.conf has a simple VirtualHost directive.
Even so, I tried moving the JSP outside of the WEB-INF, but still no luck.
The request doesn't seem to be getting to mod_jk at all. In the Apache
ac
I do not have any Location directives and I am not using auto aliasing.
My httpd.conf has a simple VirtualHost directive.
Even so, I tried moving the JSP outside of the WEB-INF, but still no luck.
The request doesn't seem to be getting to mod_jk at all. In the Apache
access_log I can see the 4
Jack J. Coleman wrote:
Apache.
Then you must have some config value that forbids PUTs.
See if you have some Location directive that contains
a path prefix of JkMount.
Also try to put your .jsp files outside WEB-INF.
mod_jk explicitly denies the access to WEB-INF and
META-INF locations (if you
Apache.
BTW, is 405 issued by Apache or Tomcat?
Regards,
Mladen.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
Jack J. Coleman wrote:
Thanks for the response Mladen.
My config file has the following:
JKMount /accounts/account/* wrkr
Well, that's certainly a better solution.
BTW, is 405 issued by Apache or Tomcat?
Regards,
Mladen.
-
Thanks for the response Mladen.
My config file has the following:
JKMount /accounts/account/* wrkr
Where "/accounts/account/*" is setup as a sevlet mapping to a JSP in
WEB-INF/jsp
If the documentRoot in Apache doesn't allow the PUT method, what about
other paths?
I know you can set up a
Jack J. Coleman wrote:
Any help would be appreciated.
It's hard to tell without your config files
but I bet you've done something like:
JkMount /* worker
Since by default the DocumentRoot in Apache does
not allow PUT methods, you are receiving 405.
Regards,
Mladen.
I was using Tomcat standalone and I could send files to the server with
the PUT request-method with no problems (in a REST Web Service). Now
that I have Apache hooked into Tomcat with mod_jk, the PUT request gives
me a 405 error (method not allowed). Does anyone know how to set this up
so that