Hi !
The title seems clear
I would want to delete the local files that was sended by ftp-outbound-adapter, but I don't find any attribute that sounds like delete-local-files = "true".
Any help ?
Thanks
Gabe
Hi !
The title seems clear
I would want to delete the local files that was sended by ftp-outbound-adapter, but I don't find any attribute that sounds like delete-local-files = "true".
Any help ?
Thanks
Gabe
Hi!
How about this one:
?HTML Code:<ftp:outbound-channel-adapter> <ftp:request-handler-advice-chain> <bean class="org.springframework.integration.handler.advice.ExpressionEvaluatingRequestHandlerAdvice"> <property name="onSuccessExpression" value="payload.delete()" /> </bean> </ftp:request-handler-advice-chain> </ftp:outbound-channel-adapter>
Take care,
Artem
Great ! It works fine. Thank you.
Where can I find documentation about <ftp:request-handler-advice-chain> ? I didn't know this tag.
http://static.springsource.org/sprin...r-advice-chain
and follow with XSD and sources
Fortunately I upgraded to 2.2.0 yesterday !
Thank you again Cleric.