How to pass Headers using HTTP component in Mule

1.5k Views Asked by At

Hi I am working with Any Point Studio and i want to pass headers with the current request with a key value pair How to achieve that using existing HTTP Component.

enter image description here

2

There are 2 best solutions below

4
On BEST ANSWER

You can invoke the HTTP Inbound through Mule Client, here is an example:

MuleClient muleClient = new MuleClient(muleContext);
Map<String, Object> headers = new HashMap<String, Object>(1);
headers.put("key", "456453N123");
MuleMessage result = muleClient.send("http://localhost:8081/prm", PAYLOAD, headers);

The HTTP headers are in the inbound-scoped properties of the MuleMessage. To get the header from a flow, you can use:

<logger level="INFO" message="Header Content-Type = #[header:key]"/>
0
On

You can also set header using the Property component or Message properties for setting multiple header data see below: