|
HTTP has been edited by Claus Ibsen (Nov 15, 2008). Change summary: CAMEL-656 HTTP ComponentThe http: component provides HTTP based endpoints for consuming external HTTP resources (as a client to call external servers using HTTP). URI formathttp:hostname[:port][/resourceUri][?options]
Options
Message Headers
Message BodyCamel will store the http response from the external server on the OUT body. All headers from the IN message will be copied to the OUT message so headers is preserved during routing. Response codeCamel will handle according to the http response code:
Calling using GET or POSTIn Camel 1.5 the following algorithm is used to determine if either GET or POST http method should be used: Configuring URI to callYou can set the http producer's URI directly form the endpoint URI. In the route below Camel will call our to the external server oldhost using HTTP. from("direct:start") .to("http://oldhost"); And the equivalent spring sample: <camelContext xmlns="http://activemq.apache.org/camel/schema/spring"> <route> <from uri="direct:start"/> <to uri="http://oldhost"/> </route> </camelContext> In Camel 1.5.1 you can override the http endpoint URI by adding a header with the key HttpProducer.HTTP_URI on the message. from("direct:start") .setHeader(org.apache.camel.component.http.HttpProducer.HTTP_URI, constant("http://newhost")) .to("http://oldhost"); In the sample above Camel will call the http://newhost Configuring URI ParametersThe 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. from("direct:start") .to("http://oldhost?order=123&detail=short"); Or options provided in a header: from("direct:start") .setHeader(org.apache.camel.component.http.HttpProducer.HTTP_QUERY, constant("order=123&detail=short")) .to("http://oldhost"); How to set the http method (GET/POST/PUT/DELETE/HEAD/OPTIONS/TRACE) to the HTTP producerThe HTTP component provides a way to set the HTTP request method by setting the message header. Here is an example; from("direct:start") .setHeader(org.apache.camel.component.http.HttpMethods.HTTP_METHOD, constant(org.apache.camel.component.http.HttpMethods.POST)) .to("http://www.google.com") .to("mock:results"); The method can be written a bit shorter using the string constant: .setHeader(org.apache.camel.component.http.HttpMethods.HTTP_METHOD, constant("POST"))
And the equivalent spring sample: <camelContext xmlns="http://activemq.apache.org/camel/schema/spring"> <route> <from uri="direct:start"/> <setHeader headerName="http.requestMethod"> <constant>POST</constant> </setHeader> <to uri="http://www.google.com"/> <to uri="mock:results"/> </route> </camelContext> Setting charset to send dataIf you are using POST to send data you can configure the charset using the Exchange property: exchange.setProperty(Exchange.CHARSET_NAME, "iso-8859-1");
Or the HttpClient options: httpClient.contentCharset=iso-8859-1 Sample with scheduled pollThe sample polls the Google homepage every 10 seconds and write the page to the file message.html 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 URIIn 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. // we query for Camel at the Google page template.sendBody("http://www.google.com/search?q=Camel", null); URI Parameters from the MessageMap 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", null, headers); In the header value above notice that it should not be prefixed with ? and you can separate parameters as usual with the & char. Getting the Response CodeYou can get the http response code from the http component by getting the value from out message header with HttpProducer.HTTP_RESPONSE_CODE. Exchange exchange = template.send("http://www.google.com/search", new Processor() { public void process(Exchange exchange) throws Exception { exchange.getIn().setHeader(HttpProducer.QUERY, constant("hl=en&q=activemq")); } }); Message out = exchange.getOut(); int responseCode = out.getHeader(HttpProducer.HTTP_RESPONSE_CODE, Integer.class); Advanced UsageIf you need more control over the http producer you should use the HttpComponent where you can set various classes to give you custom behavior. See Also |
Unsubscribe or edit your notifications preferences
