I host a series of REST services on a tomcat server, and many of them can use backslash \ as part of the object identifier, as in http://server/entitype/id\of\the\entitythatcan/have/forwardslashes/too
Now tomcat, as I discovered, provides no way to change the two default behaviors, either return the error to the backslash found at the URL, or replace \ with forwardlash. See http://www.docjar.com/html/api/org/apache/coyote/tomcat5/CoyoteAdapter.java.html Line 735
Is there any hope of changing this without having to create a custom tomcat assembly?
source share