I've done this way.. Like sending soap message as an input and getting back
the response.
But my question was, is there any possiblility that without using any
payload or java code can I be able to call web service operation with
arguements only by using camel context file.
--
View this message
Check out RESTful services. Those can be invoked using parameters alone. No
XML structure required.
--
View this message in context:
http://camel.465427.n5.nabble.com/Consume-CXF-Web-service-using-setHeader-or-anyway-without-using-JAVA-code-Error-tp5752533p5752542.html
Sent from the Camel Devel
The basic requirement for calling a web service is to pass the data as per
the schema of the operations in web service. The structure of the data has
to be adhered to.
Else it will always throw Marshalling Exceptions at server and and return a
Client fault code.
--
View this message in context:
Hi
This is the wrong forum to ask. Use the @user forum for user questions
on Apache Camel
http://camel.apache.org/discussion-forums.html
On Thu, Jun 19, 2014 at 7:01 AM, Jaishankar wrote:
> I'm trying to consume web service using setHeader component. *My main goal
> here is not to write any java