Google Code Exporter
Google Code Exporter
``` What steps will reproduce the problem? 1. Implementing urlrewrite filter 2. Implementing my custom Authentication Filter What is the expected output? What do you see instead? Authentication Filter doesn't...
``` What steps will reproduce the problem? Use filter in web.xml org.tuckey.web.filters.urlrewrite.UrlRewriteFilter and deploy by Eclipse WST on Tomcat. The ERROR is shown in log that file/resource hasn't been found....
``` urlrewritefilter is nice for Linked Data, but best practice dictates use of a 303 redirect. I downloaded the readonly source tree this morning and tweaked existing code to implement...
``` What steps will reproduce the problem? 1. Add an outbound rule such as /my?name=(.*) 2. set name with special characters, eg: ">my link Here, 22"inch tv 3.$1 4. The...
``` Steps to reproduce: 1. Create a rule whose property contains a variable such as %{session-attribute:com.example.ATTRIBUTE_NAME}. 2. Visit a URL that triggers the rule. Expected result: The variable in the...
``` They are documented as '%N' which should be '$1'. ``` Original issue reported on code.google.com by `[email protected]` on 25 Sep 2012 at 8:53
``` Say, one has a rule: ^/test/(.+)\.html$ /test/${upper:$1}/${upper:$1}.html so they expect request /test/test.html to be redirected to /test/TEST/TEST.html. In 4.0.3 it is redirected to test/TEST%7D/$%7BUPPER:TEST.html Note, that this was working...
``` All of my rules and outbound rules work fine with http but none works for https. Some of my rules are:- ^(.*)/control/(.*);(.*)$ $1/$2;$3 ^(.*)/control/category/~category_id=(.*);(.*)$ $1/category/$2;$3 Please tell where am...
``` I am running an embedded vert.x (http://vertx.io/) instance listening to its own port to provide Websocket connectivity. As such it would be nice if I could use urlrewritefilter within...
``` There are cases in my work where I need to pass through the cookies of the original request to a proxied URL. I have been running a modified version...