I'm using schema validation component for xml validation.
In my scenario xml comes from JMS queue and need to place in other JMS queue in between I need to validate incoming xml whether it is proper or not by XSD Schema.
but when I put logger after Schema Validation component it is not logging( logging as[#document: null]) xml even input xml is as per XSD Schema.
<mulexml:schema-validation-filter name="Schema_Validation" schemaLocations="C:\src\test\resources\Orders.xsd" returnResult="true" doc:name="Schema Validation" />
<logger message="content is #[payload]" level="INFO" doc:name="Logger"/>
Please suggest me on this., Thanks...,