I have a simple requirement where i have to write a csv to linux sftp . In the current implementation Which I have done CR-'carriage return' is being removed when writting the csv to sftp using mulesoft sftp connector . I have set encoding=US-ASCII on the sftp connector , in the dataweave , even in the property file as mule.encoding=US-ASCII. Nothing seems like working in cloud hub , but surprisingly the same works fine in my local . I understand after reading few blogs/ white papers that trasfer type should be 'ASCII' when writing to Linux SFTP . This is clearly an issue with cloudHub I believe . Any help is much appreciated .
相关问题
- How to filter an array of JSON in Mule DataWeave
- Mule processing strategies - call async private fl
- [javax.xml.bind.UnmarshalException: unexpected ele
- Mule ESB: Retrieving email messages from Gmail usi
- Why does Mule DataWeave array map strip top level
相关文章
- How to implement Mule HTTP GET Method redirect?
- convert xml to soap request using xslt transformat
- How to convert SOAP web service to REST web servic
- Spring3 Dependency Injection not working with mule
- Singleton Startup Mule Component/Flow
- Mule ESB:Context Property Placeholder
- Testing sub-flows in Mule
- how to fix build errors for Maven Mulesoft code
Explicitly setting %output application/csv lineSeparator="\r\n" worked for me. Thanks