-
Notifications
You must be signed in to change notification settings - Fork 38.4k
Allow DispatcherServlet/ServletWrappingController to work with the extended WebDAV methods [SPR-4799] #9476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
bugmenot commented Also see <code>FrameworkServlet.setDispatchOptionsRequest(boolean)</code>: sets whether servlet should dispatch an HTTP OPTIONS request to the doService method. (DispatcherServlet extends FrameworkServlet) |
bugmenot commented Also affects ServletForwardingController (obviously!) |
bugmenot commented Possibly better to call 'processRequest(req, resp)' instead of 'doService(req, resp)'. |
Rossen Stoyanchev commented This issue has been resolved through a selective bulk update, as part of a larger effort to better manage unresolved issues. To qualify for the update, the issue was either created before Spring 3.0 or affects a version older than Spring 3.0 and is not a bug. There is a good chance the request was made obsolete, or at least partly outdated, by changes in later versions of Spring including deprecations. It is also possible it didn't get enough traction or we didn't have enough time to address it. One way or another, we didn't get to it. If you believe the issue, or some aspects of it, are still relevant and worth pursuing at present you may re-open this issue or create a new one with a more up-to-date description. We thank you for your contributions and encourage you to become familiar with the current process of managing Spring Framework JIRA issues that has been in use for over a year. |
Juergen Hoeller commented As of the upcoming Juergen |
Johannes Edmeier commented Currnenlty (4.3.2) the AbstractController handles the OPTIONS request itself. In my case I need to forward the OPTIONS request to a ZuulServlet which forwards the request to an external service. I wonder if it's possible to dispatch the OPTIONS request to the wrapped servlet itself like the DispatcherServlet is able to do. |
Antonio Mota opened SPR-4799 and commented
The DispatcherServlet doesn't allow methods beside HTTP one's, thus disabling the use in WebDAV contexts. This can be corrected by override one method in DispatcherServlet, as discussed in http://forum.springframework.org/showthread.php?t=53472 :
Also, ServletWrappingController could have a constructor to allow the WebDAV methods to be forward to a WevDAV servlet:
or even better, issuing a OPTIONS to the wrapped servlet and setting the supported methods to it's result .
Issue Links:
Referenced from: commits 3d87718
2 votes, 5 watchers
The text was updated successfully, but these errors were encountered: