Re: Trouble with CXF soap response

2012-12-14 Thread Aki Yoshida
Are you setting the body with an xml string like "" or just ""? You need to set an xml string that represents whatever the root response element you defined. And is it still not working? 2012/12/14 brxv : > The wsdl does define a response. > I'd described the respose as bank but to be more precis

Re: Trouble with CXF soap response

2012-12-14 Thread brxv
The wsdl does define a response. I'd described the respose as bank but to be more precise, it is a soap envelope with a soap body. within this is the root element of my return type, but no child tags, even if I try to set them. if i add a file url to the route, the contents are stored "correctly"

Re: Trouble with CXF soap response

2012-12-14 Thread Aki Yoshida
Does your wsdl define a response message? If it doesn't, it is normal that you get an empty response. In that case, you see an empty HTTP 202 response with the current CXF but with older CXF versions, you will see an HTTP 200. 2012/12/14 brxv : > Hello. > I'm just startig out with camel and am try