Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

Type

Description

HttpProducer.QUERY CHARACTER_ENCODING

String

Camel 2.0: Character encoding. Is set on the IN message.

HttpProducer.CONTENT_TYPE

String

Camel 2.0: Content type URI parameters. Will override existing URI parameters set directly on the endpoint. Is set on the IN message.

HttpProducer.HTTP_URI

String

Camel 1.5.1: URI to call. Will override existing URI set directly on the endpoint. Is set on the IN message.

HttpProducer.HTTP_RESPONSE_CODE

int

The http response code from the external server. Is 200 for OK. Is set on the OUT message.

HttpProducer.PATH

String

Camel 2.0 Request URI's path. Is set on the IN message.

HttpProducer.QUERY

String

URI parameters. Will override existing URI parameters set directly on the endpoint. Is set on the IN message.

Message Body

Camel 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.
Additionally Camel will add the http response headers as well to the OUT message.

...