Re: OPTIONS and TRACE not being caught by Restlet Server

2012-06-28 Thread Paul Morris
I did some more testing and it looks like the issue here is the Spring extension. I removed the dependency on Spring and just used the ServerServlet class in the servlet ext package and calling OPTIONS works. I found this discussion from a few years back

Re: OPTIONS and TRACE not being caught by Restlet Server

2012-06-28 Thread Paul Morris
Got it working! Needed to use org.restlet.ext.spring.SpringServerServlet instead and configure the web.xml a little differently. Below is the configuration that worked for me. The web.xml: listener listener-classorg.springframework.web.context.ContextLoaderListener/listener-class