Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CL_HTTP_CLIENT HEADER_FIELD lower case

Former Member
0 Likes
1,253

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'.
3 REPLIES 3
Read only

RaymondGiuseppi
Active Contributor
963

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?

Read only

0 Likes
963

the external system is the receiver,it's header field name is case-insensitive.

Read only

0 Likes
963

so, it's perfect, could you mark the answer as correct, or is there something else?