I'm trying to send XML
message to FTP
in Spring Integration
using active MQ
. Text message is working fine at Receiver Queue
and I can print message in console but how can I send this message to FTP
outbound adapter which need to store in a XML
file
in local directory?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- Illegal to have multiple roots (start tag in epilo
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
This question is not at all clear; XML is text. The FTP adapter can handle a String payload so you can simply receive the XML from JMS in a message and send it to the FTP adapter directly; there is no need to write to a file first.
Read the documentation.