2018 Feb 28 12:56 PM
I use CL_HTTP_CLIENT from ABAP to send a request to an external server,The headers i set was converted to all lower case e.g clientid,Is there anyway I can stop this from happening.
CALL METHOD LR_CLIENT->REQUEST->SET_HEADER_FIELD
EXPORTING
NAME = 'ClientId'
VALUE = 'com.wynca.esb.provider.wms.qimen.op'.
2018 Feb 28 3:26 PM
AFAIK In §3.2 (Message Headers) RFC 7230 (as of old §4.2 of RFC 2616) it is written 'Field names are case-insensitive' , so why?
2018 Mar 01 12:29 AM
the external system is the receiver,it's header field name is case-insensitive.
2018 Mar 01 8:14 AM
so, it's perfect, could you mark the answer as correct, or is there something else?