Hi Steven ... 

I have tried next pipeline:


<map:match pattern="upload">

<map:generate src="upload.html"/>

<map:serialize type="html"/>

</map:match>


But it doesn't work !!! I have a problem, and I don't know where it
is...

My sitemap contains two pipelines I have developed: one for "*.html"
requests, and other for "*.xsp" requests. Both work perfectly.

But when I try to add another pipeline, this one doesn't work. I
have tried with "upload","*htm", "*.ppp" ... but no one works !!! 

It seems that sitemap only accepts pipelines that have a known
extension, like xsp or html ... is it possibly???

(my English level is not very high ... sorry, I hope to improve it !!!) 

Next, my pipelines that works properly:

<map:pipeline>
        <map:match pattern="*.html">
                <map:generate type="file" src="XML/{1}.xml"/>
                <map:transform src="XSL/{1}.xsl"/>
                <map:serialize type="html"/>
        </map:match>
 </map:pipeline>

<map:pipeline>
        <map:match pattern="*.xsp">
                <map:generate type="serverpages" src="XSP/{1}.xsp"/>
                <map:transform src="XSL/{1}.xsl"/>
                <map:serialize type="html"/>
        </map:match>
 </map:pipeline>

But if I try:

<map:pipeline>
        <map:match pattern="upload">
                <map:generate src="upload.html"/>
                <map:serialize type="html"/>
        </map:match>
 </map:pipeline>

shows next error: "The requested URL /cocoon/upload was not found on
this server.

Any help, please ???

Thanks all from Barcelona ... 
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to