Jay mann created CAMEL-9611:
-------------------------------
Summary: Restlet GET request should not trying to stringify the
exchange body
Key: CAMEL-9611
URL: https://issues.apache.org/jira/browse/CAMEL-9611
Project: Camel
Issue Type: Bug
Components: camel-restlet
Affects Versions: 2.16.2
Reporter: Jay mann
Priority: Minor
When sending a restlet GET request, the body should not be looked at at all.
Right In my code i have a java object in the body, and i send a GET request, i
expect the restlet response to replace whatever is in the body. But i get a
type conversion error because it is trying to stringify the java object before
sending the get request.
I think the body should only be used in PUT and POST request.
Here is the fix in
org.apache.camel.component.restlet.DefaultRestletBinding.java:
public void populateRestletRequestFromExchange(Request request, Exchange
exchange) {
request.setReferrerRef("camel-restlet");
String body = null;
if(request.getMethod() == Method.POST || request.getMethod() ==
Method.PUT)
{
body = exchange.getIn().getBody(String.class);
}
Form form = new Form();
// add the body as the key in the form with null value
form.add(body, null);
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)