Hide Forgot
Exception is being thrown: javax.xml.bind.MarshalException - with linked exception: [com.sun.istack.SAXException2: class net.java.dev.webdav.jaxrs.xml.properties.ResourceType nor any of its super class is known to this context. javax.xml.bind.JAXBException: class net.java.dev.webdav.jaxrs.xml.properties.ResourceType nor any of its super class is known to this context.]
The fix is to manually register the @Provider win web.xml with <context-param> <param-name>resteasy.providers</param-name> <param-value>net.java.dev.webdav.jaxrs.xml.WebDavContextResolver</param-value> </context-param>
The fix is on the dev server.
Verified that WebDAV now works. Just a minor change to this however, it's now configured in the JaxRsActivator like the rest of the providers/interceptors just so we are using a consistent method of defining RESTEasy providers, interceptors, etc...