String -> JAXB Object -> CXF Web Service Request (request)
CXF Web Service Response -> JAXB Object -> String
I am working with the following scenario, a string gets placed in a file or jms queue, mule will pick it up and marshall it to a JAXB Object, from this we will create the CXF Web Request and send it to the Web Service.
From the response, the original JAXB Object will be filled in with values from this response from the CXF Web Request and sent off to the originating system.
mule-config.xmlI want to be able to manipulate this at the component level so, the inbound endpoint has a StringToCustomObject transformer on it. I tried to put a transformer on the cxf outbound endpoint but it is not picking it up. Any advice?
The end goal is to maintain the original request so that it can be used during the response.