Hello,
I'm reading the Cocoon book written by Matthew and Carsten and one example in it
doesn't work.
The pipeline fragment is:
1. <map:pipeline>
2. <map:match pattern="download">
3. <map:act type="request">
4. <map:parameter name="parameters" value="true"/>
6. <map:act type="resource-exists">
7. <map:parameter name="url" value="download/{file}"/>
8. <map:read src="download/{file}"/>
9. </map:act>
10. <map:generate src="filenotfound.xml"/>
11. <map:transform src="filenotfound2html.xsl"/>
12. <map:serialize/>
13. </map:act>
14. </map:match>
15.</map:pipeline>
All seem to work except the line 8.
Cocoon detect that the {file} exists (line 7) but it can't read it (line 8).
It returns a HTTP error 404 (file not found).
Anyone has an idea?
How to check (debug) the value {file}?
Thank you
Sylvain
---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>