HTTPPage edited by Claus IbsenHTTP ComponentThe http: component provides HTTP based endpoints for consuming external HTTP resources (as a client to call external servers using HTTP). Maven users will need to add the following dependency to their pom.xml for this component: <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-http</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
Camel 2.2 or older: Setting Authentication and Proxy
Camel 2.3 or newer: Setting Authentication and Proxy
When using authentication you must provide the choice of method for the authMethod or authProxyMethod options. HttpComponent Options
Notice that in Camel 2.3 the options on org.apache.camel.component.http.HttpConfiguration is all provided as delegates on HttpComponent so you easily can configure proxy and authentication details. Message HeadersCamel 1.x
Camel 2.x
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 are preserved during routing. Additionally Camel will add the HTTP response headers as well to the OUT message headers. Response codeCamel will handle according to the HTTP response code:
HttpOperationFailedExceptionThis exception contains the following information:
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: How to get access to HttpServletRequest and HttpServletResponseAvailable as of Camel 2.0 You can get access to these two using the Camel type converter system using HttpServletRequest request = exchange.getIn().getBody(HttpServletRequest.class); HttpServletRequest response = exchange.getIn().getBody(HttpServletResponse.class); Configuring URI to callYou can set the HTTP producer's URI directly form the endpoint URI. In the route below, Camel will call out 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 despite the endpoint is configured with http://oldhost. And the same code in Camel 2.0: from("direct:start") .setHeader(HttpConstants.HTTP_URI, constant("http://newhost")) .to("http://oldhost"); Where Constants is the class, org.apache.camel.component.http.Constants. 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(HttpConstants.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; Camel 1.x from("direct:start") .setHeader(HttpConstants.HTTP_METHOD, constant(org.apache.camel.component.http.HttpMethods.POST)) .to("http://www.google.com") .to("mock:results"); Camel 2.x from("direct:start") .setHeader(Exchange.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 constants: .setHeader("CamelHttpMethod", constant("POST")) And the equivalent Spring sample: <camelContext xmlns="http://activemq.apache.org/camel/schema/spring"> <route> <from uri="direct:start"/> <setHeader headerName="CamelHttpMethod"> <constant>POST</constant> </setHeader> <to uri="http://www.google.com"/> <to uri="mock:results"/> </route> </camelContext> Using client tineout - SO_TIMEOUTSee the unit test in this link Configuring a ProxyOnly for >= Camel 1.6.2 from("direct:start") .to("http://oldhost?proxyHost=www.myproxy.com&proxyPort=80"); There is also support for proxy authentication via the proxyUsername and proxyPassword options. Using proxy settings outside of URI*Only for >= Camel 1.6.2 and < Camel 2.2.0 * To avoid the System properties conflicts, from Camel 2.2.0 you can only set the proxy configure from CameContext or URI. context.getProperties().put("http.proxyHost", "172.168.18.9"); context.getProperties().put("http.proxyPort" "8080"); Spring XML <camelContext> <properties> <property key="http.proxyHost" value="172.168.18.9"/> <property key="http.proxyPort" value="8080"/> </properties> </camelContext> Camel will first set the settings from Java System or CamelContext Properties and then the endpoint proxy options if provided. Configuring charsetIf you are using POST to send data you can configure the charset using the Exchange property:
exchange.setProperty(Exchange.CHARSET_NAME, "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 & character 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 the 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); Using throwExceptionOnFailure=false to get any response backAvailable as of Camel 2.0 // We set throwExceptionOnFailure to false to let Camel return any response from the remove HTTP server without thrown // HttpOperationFailedException in case of failures. // This allows us to handle all responses in the aggregation strategy where we can check the HTTP response code // and decide what to do. As this is based on an unit test we assert the code is 404 from("direct:start").enrich("http://localhost:8222/myserver?throwExceptionOnFailure=false&user=Camel", new AggregationStrategy() { public Exchange aggregate(Exchange original, Exchange resource) { // get the response code Integer code = resource.getIn().getHeader(Exchange.HTTP_RESPONSE_CODE, Integer.class); assertEquals(404, code.intValue()); return resource; } }).to("mock:result"); // this is our jetty server where we simulate the 404 from("jetty://http://localhost:8222/myserver") .process(new Processor() { public void process(Exchange exchange) throws Exception { exchange.getOut().setBody("Page not found"); exchange.getOut().setHeader(Exchange.HTTP_RESPONSE_CODE, 404); } }); Disabling CookiesTo disable cookies you can set the HTTP Client to ignore cookies by adding this URI option: 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. Setting MaxConnectionsPerHostThe HTTP Component has a org.apache.commons.httpclient.HttpConnectionManager where you can configure various global configuration for the given component. First, we define the http component in Spring XML. Yes, we use the same scheme name, http, because otherwise Camel will auto-discover and create the component with default settings. What we need is to overrule this so we can set our options. In the sample below we set the max connection to 5 instead of the default of 2. <bean id="http" class="org.apache.camel.component.http.HttpComponent"> <property name="camelContext" ref="camel"/> <property name="httpConnectionManager" ref="myHttpConnectionManager"/> </bean> <bean id="myHttpConnectionManager" class="org.apache.commons.httpclient.MultiThreadedHttpConnectionManager"> <property name="params" ref="myHttpConnectionManagerParams"/> </bean> <bean id="myHttpConnectionManagerParams" class="org.apache.commons.httpclient.params.HttpConnectionManagerParams"> <property name="defaultMaxConnectionsPerHost" value="5"/> </bean> And then we can just use it as we normally do in our routes: <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring" trace="true"> <route> <from uri="direct:start"/> <to uri="http://www.google.com"/> <to uri="mock:result"/> </route> </camelContext> Using HTTPS to authenticate gotchasAn end user reported that he had problem with authenticating with HTTPS. The problem was eventually resolved when he discovered the HTTPS server did not return a HTTP code 401 Authorization Required. The solution was to set the following URI option: httpClient.authenticationPreemptive=true Accepting self signed certifications from remote serverSee this link from a mailing list discussion with some code to outline how to do this with the Apache Commons HTTP API. Setting up SSL for HTTP ClientBasically camel-http component is built on the top of Apache HTTP client, and you can implement a custom org.apache.camel.component.http.HttpClientConfigurer to do some configuration on the http client if you need full control of it. However if you just want to specify the keystore and truststore you can do this with Apache HTTP HttpClientConfigurer, for example: Protocol authhttps = new Protocol("https", new AuthSSLProtocolSocketFactory( new URL("file:my.keystore"), "mypassword", new URL("file:my.truststore"), "mypassword"), 443); Protocol.registerProtocol("https", authhttps); And then you need to create a class that implements HttpClientConfigurer, and registers https protocol providing a keystore or truststore per example above. Then, from your camel route builder class you can hook it up like so: HttpComponent httpComponent = getContext().getComponent("http", HttpComponent.class); httpComponent.setHttpClientConfigurer(new MyHttpClientConfigurer()); If you are doing this using the Spring DSL, you can specify your HttpClientConfigurer using the URI. For example: <bean id="myHttpClientConfigurer" class="my.https.HttpClientConfigurer"> </bean> <to uri="https://myhostname.com:443/myURL?httpClientConfigurerRef=myHttpClientConfigurer"/> As long as you implement the HttpClientConfigurer and configure your keystore and truststore as described above, it will work fine. See Also
Change Notification Preferences
View Online
|
View Change
|
Add Comment
|
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence
- [CONF] Apache Camel > HTTP confluence