For GET, all I have to do is set
getTunnelService().setExtensionsTunnel(true);
and then use annotations, like
@Get("tsv")
Then a request for
http://mycompany.com/doc.tsv
will be handled by the annotated method regardless of the request's Accept
header. I would like to do the same for POST, using
@Post("multipart|tsv")
but it does not work, I get a 404 response. So I am left having to manage the
extension patterns myself.
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2957922