Hi guys,
  I am having a servlet.  It expects one parameter, say 'message'.
  I want to invoke it using camel.
  I am able to invoke it successfully as a HTTP GET method as follows:
   
from("direct:start").to("http://192.168.221.109:8080/DSP1/ServletDsp?message=HelloCamel";);
    String response=template.requestBody("direct:start", null,
String.class);

  What I want is instead of passing the parameter in the query string, can I
pass it as a message body?
    String response=template.requestBody("direct:start", "HelloCamel",
String.class);

  Is there a way to accomplish this?
 
  I have already visited Camel Servlet Component webpage.

  It doesn't help.

Thanks,
Syed.



--
View this message in context: 
http://camel.465427.n5.nabble.com/Invoking-Servlet-from-Camel-tp5736417.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to