Details
Description
CAMEL-5173 removed the two type converters which could always to load the classes and it broke the itest of CxfToJmsInOutTest.
After digging the code for a while I found the CxfProducer always looks up the parameter by turning the message body into a List. With the change of CAMEL-5173, Camel will turn the message body into a List of ActiveQueue (as the String --> List converter are wildly used).
To fix this issue, we should let the CxfProducer pick up the parameter carefully.