Sylvain Dusart created CAMEL-16410:
--------------------------------------

             Summary: Unmarshal ZIP without error handling in Camel 3.8.0 when 
using split
                 Key: CAMEL-16410
                 URL: https://issues.apache.org/jira/browse/CAMEL-16410
             Project: Camel
          Issue Type: Bug
          Components: camel-zipfile
    Affects Versions: 3.0.1
            Reporter: Sylvain Dusart
            Assignee: Omar Al-Safi
             Fix For: 3.2.0


I've following route
 
 
{code:java}
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";>
 <camelContext xmlns="http://camel.apache.org/schema/blueprint";>
   <route>
     <from uri="file:/var/files/in?include=.*\.zip" />
     <unmarshal>
       <zipfile />
     </unmarshal>
     <log message="body: ${in.body}" />
     <to uri="file:/var/files/out" />
   </route>
 </camelContext>
</blueprint>{code}
 
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.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to