Extra request parameters sent by the camel-http4 component
----------------------------------------------------------

                 Key: CAMEL-4768
                 URL: https://issues.apache.org/jira/browse/CAMEL-4768
             Project: Camel
          Issue Type: Bug
          Components: camel-http
    Affects Versions: 2.8.3
         Environment: jdk1.6.0_29; Windows XP
            Reporter: Xavier Vergés
            Priority: Minor


Described in 
http://camel.465427.n5.nabble.com/Extra-Request-Params-sent-in-camel-HTTP-component-GET-request-td5042808.html

Route 
{code}
from("jetty:http://0.0.0.0:8080/myapp/myservice";) 
.to("http4://www.google.com/?q=camel&bridgeEndpoint=true&throwExceptionOnFailure=false");
 
{code}
sends to the server the {{bridgeEndpoint=true&throwExceptionOnFailure=false}} 
parameters,
while route 
{code}
from("jetty:http://0.0.0.0:8080/myapp/myservice";) 
.to("http://www.google.com/?q=camel&bridgeEndpoint=true&throwExceptionOnFailure=false";);
 
{code}
behaves properly and removes them

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira


Reply via email to