Dear community,

I've following route

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";>
        <camelContext xmlns="http://camel.apache.org/schema/blueprint";>
                <route>
                        <from uri="file:/var/casisp/files/in?include=.*\.zip" />
                        <unmarshal><zipfile /></unmarshal>
                        <log message="body: ${in.body}" />
                        <to uri="file:/var/casisp/files/out" />
                </route>
        </camelContext>
</blueprint>

When I'm sending a corrupted ZIP file to this route I'd expect a Camel runtime 
error. This won't happen, I'm only getting an empty body.

Do I miss something?

Best
- Gerald

Reply via email to