> From: Jozsa Kristof [mailto:[EMAIL PROTECTED]]
> 
> Ok, here's a trivial question: how do I serve image files using
Cocoon?
> 
> I have some html tag in the results of some page, like:
> <img border="0" src="/images/company/wtf.jpg">
> 
> and in the sitemap's main pipeline (the reader is configured at the
top):
> <map:match pattern="images/**.jpg">
>   <map:read src="/images/{1}.jpg" mime-type="image/jpg"/>
> </map:match>
> 
> 
> The docs says that's enough, I think this should be enough too. The
logs
> says: 'org.apache.cocoon.ResourceNotFoundException: Resource not found
> file:/images/company/wtf.jpg'.
> 
> What do I miss from here?

Do you have /images directory at the root of the file system?
Or, if images are located in context directory, try without leading
slash:

   <map:read src="images/{1}.jpg" mime-type="image/jpg"/>


Vadim


---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

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

Reply via email to