Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: CAMEL-808

...

Code Block
http:hostname[:port][/resourceUri][?options]

Usage

You can only produce to endpoints generated by the HTTP component. Therefore it should never be used aas input into your camel Routes. To bind/expose an HTTP endpoint via an http server as input to a camel route, you can use the Jetty Component

URI Parameters

The http producer supports URI parameters to be sent to the HTTP server. The URI parameters can either be set directly on the endpoint URI or as a header with the key HttpProducer.QUERY on the message. See samples below.

How to set the POST/PUT/INFO/DELETE/GET to the HTTP producer

...

Code Block
from("timer://foo?fixedRate=true&delay=0&period=10000")
    .to("http://www.google.com")
    .setHeader(FileComponent.HEADER_FILE_NAME, "message.html").to("file:target/google");

URI Parameters from the endpoint URI

In this sample we have the complete URI endpoint that is just what you would have typed in a web browser. Multiple URI parameters can of course be set using the & as separator, just as you would in the web browser. Camel does no tricks here.

Code Block
java
java

// we query for Camel at the Google page
template.sendBody("http://www.google.com/search?q=Camel", "");

URI Parameters from the Message

Code Block
java
java

Map headers = new HashMap();
headers.put(HttpProducer.QUERY, "q=Camel&lr=lang_en");
// we query for Camel and english language at Google
template.sendBody("http://www.google.com/search", "", headers);

In the header value above notice that it should not be prefixed with ? and you can separate parameters as usual with the & char.

Include Page
CAMEL:Endpoint See Also
CAMEL:Endpoint See Also