Joerg:
<map:match pattern="/foo/**/*.xml/some/other/stuff">
and then refer to the parts of the "**" and "*.xml" parts of the match using "{1}" and "{2}.xml" respectively.
What's the problem? It's exactly as you wrote it.
The problem is that as long as i have pattern="/foo/**/some/other/stuff" the match is triggered. As soon as I change it to "/foo/**/*.xml/some/other/stuff" I start getting 404 Not Found
try "/foo**/*.xml/some/other/stuff"
you probably don't always have something between those slashes.
Geoff
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
