Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <User>
  3. <UserId>ON1234</UserId>
  4. <UserStatus>client1234</UserStatus>
  5. </User>
  6.  
  7. <?xml version='1.0' encoding='windows-1252'?>
  8. <User>
  9. <UserId>
  10. <UserId></UserId>
  11. <UserId>ON1234</UserId>
  12. <UserId></UserId>
  13. <UserId>ON1235</UserId>
  14. </UserId>
  15. </User>
  16.  
  17. java.util.NoSuchElementException: None.get
  18.  
  19. UserId,UserStatus
  20. ON1234,active
  21. ON1235,active
  22.  
  23. <?xml version="1.0" encoding="UTF-8"?>
  24.  
  25. <mule xmlns:ftp="http://www.mulesoft.org/schema/mule/ftp" xmlns:metadata="http://www.mulesoft.org/schema/mule/metadata" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:tracking="http://www.mulesoft.org/schema/mule/ee/tracking" xmlns:dw="http://www.mulesoft.org/schema/mule/ee/dw" xmlns:sftp="http://www.mulesoft.org/schema/mule/sftp" xmlns:batch="http://www.mulesoft.org/schema/mule/batch" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
  26. xmlns:spring="http://www.springframework.org/schema/beans"
  27. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  28. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
  29. http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
  30. http://www.mulesoft.org/schema/mule/sftp http://www.mulesoft.org/schema/mule/sftp/current/mule-sftp.xsd
  31. http://www.mulesoft.org/schema/mule/batch http://www.mulesoft.org/schema/mule/batch/current/mule-batch.xsd
  32. http://www.mulesoft.org/schema/mule/ee/ftp http://www.mulesoft.org/schema/mule/ee/ftp/current/mule-ftp-ee.xsd
  33. http://www.mulesoft.org/schema/mule/ee/dw http://www.mulesoft.org/schema/mule/ee/dw/current/dw.xsd
  34. http://www.mulesoft.org/schema/mule/ee/tracking http://www.mulesoft.org/schema/mule/ee/tracking/current/mule-tracking-ee.xsd
  35. http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
  36. http://www.mulesoft.org/schema/mule/ftp http://www.mulesoft.org/schema/mule/ftp/current/mule-ftp.xsd">
  37. <http:request-config name="HTTP_Request_Configuration" host="${host}" port="${userprocess.port}" doc:name="HTTP Request Configuration"></http:request-config>
  38. <sftp:connector name="SFTP" validateConnections="true" doc:name="SFTP"/>
  39. <flow name="userexperienceFlow" >
  40. <sftp:inbound-endpoint connector-ref="SFTP" host="localhost" port="2222" path="//input" user="${ftp.user}" password="${ftp.password}" responseTimeout="10000" doc:name="SFTP"/>
  41. <dw:transform-message metadata:id="59fade01-691b-41c6-a0b0-a9ff4b591d68" doc:name="Transform Message">
  42. <dw:input-payload doc:sample="list_csv_4.csv"/>
  43. <dw:set-payload><![CDATA[%dw 1.0
  44. %output application/xml
  45. ---
  46. {
  47. User: {
  48. UserId: payload.UserId,
  49. UserStatus: payload.UserStatus
  50. }
  51. }]]></dw:set-payload>
  52. </dw:transform-message>
  53. <object-to-string-transformer doc:name="Object to String"/>
  54. <logger level="INFO" doc:name="Logger"></logger>
  55. </flow>
  56. </mule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement