Fwd: how to get operationName for Soap Message dataFormat=MESSAGE

2018-10-26 Thread Wang Yan
Hey, I did change as document described add defaultOperationName=getUserName as below , it should work but i still could not get operationName, why? String OPERATIONNAME="&defaultOperationName=getUserName"; from(SOAP_ENDPOINT_IN_URI + "&dataFormat=MESSAGE"+OPERATIONNAME)

Re: how to get operationName for Soap Message dataFormat=MESSAGE

2018-10-26 Thread Willem Jiang
Hi, When you use MESSAGE dataformat, camel-cxf component doesn't read the message, so it makes sense that you cannot operationName header. Willem Jiang Twitter: willemjiang Weibo: 姜宁willem On Fri, Oct 26, 2018 at 4:07 PM Wang Yan wrote: > > when i use > from(SOAP_ENDPOINT_IN_URI + > "&dataForm

how to get operationName for Soap Message dataFormat=MESSAGE

2018-10-26 Thread Wang Yan
when i use from(SOAP_ENDPOINT_IN_URI + "&dataFormat=CXF_MESSAGE").removeHeaders("CamelHttp*") I can get operationName by ${in.headers.operationName} but I could not get operationName when useing dataFormat=MESSAGE from(SOAP_ENDPOINT_IN_URI + "&dataFormat=MESSAGE"). any idea or suggestion ?