Package org.apache.camel.component.http
Class HttpProducer
- java.lang.Object
-
- org.apache.camel.support.service.BaseService
-
- org.apache.camel.support.service.ServiceSupport
-
- org.apache.camel.support.DefaultProducer
-
- org.apache.camel.component.http.HttpProducer
-
- All Implemented Interfaces:
AutoCloseable,org.apache.camel.EndpointAware,org.apache.camel.IsSingleton,org.apache.camel.Processor,org.apache.camel.Producer,org.apache.camel.Service,org.apache.camel.ShutdownableService,org.apache.camel.StatefulService,org.apache.camel.SuspendableService
public class HttpProducer extends org.apache.camel.support.DefaultProducer
-
-
Constructor Summary
Constructors Constructor Description HttpProducer(HttpEndpoint endpoint)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected org.apache.http.HttpHostcreateHost(org.apache.http.client.methods.HttpRequestBase httpRequest, org.apache.camel.Exchange exchange)Creates the HttpHost to use to call the remote serverprotected org.apache.http.client.methods.HttpRequestBasecreateMethod(org.apache.camel.Exchange exchange)Creates the HttpMethod to use to call the remote server, either its GET or POST.protected org.apache.http.HttpEntitycreateRequestEntity(org.apache.camel.Exchange exchange)Creates a holder object for the data to send to the remote server.protected voiddoInit()protected org.apache.http.HttpResponseexecuteMethod(org.apache.http.HttpHost httpHost, org.apache.http.client.methods.HttpUriRequest httpRequest)Strategy when executing the method (calling the remote server).protected ObjectextractResponseBody(org.apache.http.client.methods.HttpRequestBase httpRequest, org.apache.http.HttpResponse httpResponse, org.apache.camel.Exchange exchange, boolean ignoreResponseBody)Extracts the response from the method as a InputStream.protected static Map<String,String>extractResponseHeaders(org.apache.http.Header[] responseHeaders)Extracts the response headersHttpEndpointgetEndpoint()org.apache.http.client.HttpClientgetHttpClient()protected ExceptionpopulateHttpOperationFailedException(org.apache.camel.Exchange exchange, org.apache.http.client.methods.HttpRequestBase httpRequest, org.apache.http.HttpResponse httpResponse, int responseCode)protected voidpopulateResponse(org.apache.camel.Exchange exchange, org.apache.http.client.methods.HttpRequestBase httpRequest, org.apache.http.HttpResponse httpResponse, org.apache.camel.Message in, org.apache.camel.spi.HeaderFilterStrategy strategy, int responseCode)voidprocess(org.apache.camel.Exchange exchange)voidsetHttpClient(org.apache.http.client.HttpClient httpClient)-
Methods inherited from class org.apache.camel.support.DefaultProducer
createExchange, doStart, doStop, isSingleton, toString
-
Methods inherited from class org.apache.camel.support.service.BaseService
build, doBuild, doFail, doLifecycleChange, doResume, doShutdown, doSuspend, fail, getStatus, init, isBuild, isInit, isNew, isRunAllowed, isShutdown, isStarted, isStarting, isStartingOrStarted, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspend
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Constructor Detail
-
HttpProducer
public HttpProducer(HttpEndpoint endpoint)
-
-
Method Detail
-
doInit
protected void doInit() throws Exception- Overrides:
doInitin classorg.apache.camel.support.service.BaseService- Throws:
Exception
-
getEndpoint
public HttpEndpoint getEndpoint()
- Specified by:
getEndpointin interfaceorg.apache.camel.EndpointAware- Overrides:
getEndpointin classorg.apache.camel.support.DefaultProducer
-
populateResponse
protected void populateResponse(org.apache.camel.Exchange exchange, org.apache.http.client.methods.HttpRequestBase httpRequest, org.apache.http.HttpResponse httpResponse, org.apache.camel.Message in, org.apache.camel.spi.HeaderFilterStrategy strategy, int responseCode) throws IOException, ClassNotFoundException- Throws:
IOExceptionClassNotFoundException
-
populateHttpOperationFailedException
protected Exception populateHttpOperationFailedException(org.apache.camel.Exchange exchange, org.apache.http.client.methods.HttpRequestBase httpRequest, org.apache.http.HttpResponse httpResponse, int responseCode) throws IOException, ClassNotFoundException
- Throws:
IOExceptionClassNotFoundException
-
executeMethod
protected org.apache.http.HttpResponse executeMethod(org.apache.http.HttpHost httpHost, org.apache.http.client.methods.HttpUriRequest httpRequest) throws IOExceptionStrategy when executing the method (calling the remote server).- Parameters:
httpHost- the http host to callhttpRequest- the http request to execute- Returns:
- the response
- Throws:
IOException- can be thrown
-
extractResponseHeaders
protected static Map<String,String> extractResponseHeaders(org.apache.http.Header[] responseHeaders)
Extracts the response headers- Parameters:
responseHeaders- the headers- Returns:
- the extracted headers or null if no headers existed
-
extractResponseBody
protected Object extractResponseBody(org.apache.http.client.methods.HttpRequestBase httpRequest, org.apache.http.HttpResponse httpResponse, org.apache.camel.Exchange exchange, boolean ignoreResponseBody) throws IOException, ClassNotFoundException
Extracts the response from the method as a InputStream.- Throws:
IOExceptionClassNotFoundException
-
createHost
protected org.apache.http.HttpHost createHost(org.apache.http.client.methods.HttpRequestBase httpRequest, org.apache.camel.Exchange exchange)Creates the HttpHost to use to call the remote server
-
createMethod
protected org.apache.http.client.methods.HttpRequestBase createMethod(org.apache.camel.Exchange exchange) throws ExceptionCreates the HttpMethod to use to call the remote server, either its GET or POST.- Parameters:
exchange- the exchange- Returns:
- the created method as either GET or POST
- Throws:
URISyntaxException- is thrown if the URI is invalidException- is thrown if error creating RequestEntity
-
createRequestEntity
protected org.apache.http.HttpEntity createRequestEntity(org.apache.camel.Exchange exchange) throws org.apache.camel.CamelExchangeExceptionCreates a holder object for the data to send to the remote server.- Parameters:
exchange- the exchange with the IN message with data to send- Returns:
- the data holder
- Throws:
org.apache.camel.CamelExchangeException- is thrown if error creating RequestEntity
-
getHttpClient
public org.apache.http.client.HttpClient getHttpClient()
-
setHttpClient
public void setHttpClient(org.apache.http.client.HttpClient httpClient)
-
-