When I expose a CXF webservice using camel like
from("servlet://service").to("cxf:...")
and access the service using the browser I get an exception in CXF
ReadHeadersInterceptor
org.apache.cxf.binding.soap.SoapFault: Error reading XMLStreamReader.
at
org.apache.cxf.binding.soap.interceptor.ReadHeadersInterceptor.handleMessage(ReadHeadersInterceptor.java:222)
Normally this interceptor is skipped in case of GET requests.
I think the the header field CamelHttpMethod is not correctly mapped to
org.apache.cxf.request.method. I can try to fix this myself. I just wanted to
check if I only have some configuration problem first and it should work.
Christian