Hi list.

I get an unexpected error message from Cocoon trying to match the word 'templateBuilder':

   org.apache.cocoon.ResourceNotFoundException: No pipeline matched request: templateBuilder

But the match is there. Here are excerpts from the pipeline:

<map:match pattern="">
<map:redirect-to uri="index.html"/>
</map:match>

<map:match pattern="**.html">
<map:generate src="">      <map:transform src="">      <map:transform type="cinclude"/>
     <map:transform src=""> <map:serialize type="html"/>
</map:match>

   <map:match pattern="templateBuilder">
    <map:generate src=""
<map:transform src=""> <map:parameter name="menu_url" value="{request-param:menu_url}"/>
<map:parameter name="menu_name" value="{request-param:menu_name}"/>
<map:parameter name="menu_title" value="{request-param:menu_title}"/>
<map:parameter name="layout_template" value="{request-param:layout_template}"/>
<map:parameter name="document_template" value="{request:document_template}"/>
<map:parameter name="document_url" value="{request:document_url}"/>
<map:parameter name="document_id" value="{request:document_id}"/>
</map:transform>
    <map:transform type="cinclude"/>
    <map:serialize type="xml"/>
   </map:match>


Does anyone know why Cocoon would return this error message when the match really is in the pipeline?


Thanks, Kjell Arne

Reply via email to