[
https://issues.apache.org/jira/browse/CAMEL-11120?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16057591#comment-16057591
]
Stuart Fraser commented on CAMEL-11120:
---------------------------------------
The test case is different than the reported issue. The reported issue includes
moving the file after use. Our team has found this to not work in 2.16.2
through 2.18.4. The test case is using noop. Can the issue be revisited and
verified using a move test case?
> Camel ZipFile does cannot move file after succesful processing
> --------------------------------------------------------------
>
> Key: CAMEL-11120
> URL: https://issues.apache.org/jira/browse/CAMEL-11120
> Project: Camel
> Issue Type: Bug
> Components: camel-zipfile
> Affects Versions: 2.18.3
> Environment: Windows 7 x64
> Reporter: Thomas Leber
> Assignee: onder sezgin
> Priority: Minor
>
> When creating a route as follows:
> {code:xml}
> <?xml version="1.0" encoding="UTF-8"?>
> <beans xmlns="http://www.springframework.org/schema/beans"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:camel="http://camel.apache.org/schema/spring"
> xmlns:context="http://www.springframework.org/schema/context"
> xmlns:util="http://www.springframework.org/schema/util"
> xsi:schemaLocation="
> http://www.springframework.org/schema/beans
> http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
> http://www.springframework.org/schema/context
> http://www.springframework.org/schema/context/spring-context-4.2.xsd
> http://camel.apache.org/schema/spring
> http://camel.apache.org/schema/spring/camel-spring.xsd
> http://www.springframework.org/schema/util
> http://www.springframework.org/schema/util/spring-util-2.5.xsd">
> <bean id="zipFileDataFormat"
> class="org.apache.camel.dataformat.zipfile.ZipFileDataFormat">
> <property name="usingIterator" value="true" />
> </bean>
> <camelContext xmlns="http://camel.apache.org/schema/spring"
> streamCache="true">
> <route>
> <from uri="file:C:/camelTest/in" />
> <unmarshal ref="zipFileDataFormat" />
> <split streaming="true">
> <simple>${body}</simple>
> <log loggingLevel="INFO" message="$simple{header.zipFileName}" />
> <to uri="file:C:/camelTest/xml" />
> </split>
> <log loggingLevel="INFO" message="$simple{file:name} Succesful
> processed" />
> </route>
> </camelContext>
> </beans>
> {code}
> the renaming of the file fails with
> {code}
> Renaming file from 'C:\camelTest\in\20161201T0030Z_1D_BE00_EQ.zip' to
> 'C:\camelTest\in\.camel\20161201T0030Z_1D_BE00_EQ.zip' failed: Cannot delete
> file 'C:\camelTest\in\20161201T0030Z_1D_BE00_EQ.zip' after copy succeeded
> {code}
> The file stays in input folder and gets processed over and over again.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)