Extract header from REST JSON message

Hi There,

We have requirement in which we will get a REST JSON request message which will contain unique values in the message header level. We tried the getTransportInfo but we were able to fetch only the transport level header details,but not the message level header.

Does anybody have tried this or any suggestions ?

Thanks,
Ragav J

Try to use java services.

U can use this API :

HttpHeader header = Service.getHttpRequestHeader();
Map<String,String> attr = header.getFieldsMap();

The attr will contain all the header’s attribute.