Hi,
Do you have any plans to extend http-in node to have a catch-all mode?
a wildcard url like http://somesite.com/subdir/*
to catch all requests to
http://somesite.com/subdir/
http://somesite.com/subdir/foo
http://somesite.com/subdir/foo/bar
http://somesite.com/subdir/foo/bar?foo=bar&bar=foo
..
http://somesite.com/subdir/foo/bar... .... baz/?something=foo&otherthing=bar
so one can process msg.req.url string for more fine grained routing.
currently i'm using named parameters like http://somesite.com/subdir/:level1/:level2/:level3/:level4/ ..
Thanks.