Dear Dan, Now Im facing a different problem. The Client sends SOAP Message which has UTF-16 encoded XMLdocument. My Server's service handler can process only UTF-8 encoded data. Naturally we can transform UTF-16 to UTF-8 while accessing data in the handler's Implementation. But im looking for a solution where I can make interceptors work for me here. What i want is to have an Interceptor attached to the in-chain before the de-serialization, which can directly convert the UTF-16 doc to UTF-8,so that the objects will have the data represented in UTF-8. Similarly attach an out-chain interceptor to convert the UTF-8 XML document to UTF-16 document after the serialzation.
I'd like to know which is the most efficient way to achieve this using existing CXF utilities. Please advice ! Also, I want this to work on various trasnports like HTTP,HTTPSand JMS. anoopPrasad
