On 6/9/05, Roberto Fornasiero <[EMAIL PROTECTED]> wrote:
> I believe that Coccon answer to the
> requests reading the sitemap.xmap, so the first pipeline that matches the
> request is used to answer it. 

>From experience, that is not true.  I (accidentally, ignorantly) added:
<map:match pattern="**">
at the very end of a usecase sitemap.  It confused a Flow JS call
return pipeline until I changed it to:
<map:match pattern="**.html">

Make certain each of your matches is unique.  You may need to nest
them.  You could add a unique extension to the URL.  You may also need
to match the URL better:
<map:match pattern="**/jsp_*">
        <map:generate type="jsp" src="resources/jsp/jsp_{2}.jsp"/>
        <map:serialize type="html"/>
</map:match>

solprovider

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to