cancel
Showing results for 
Search instead for 
Did you mean: 

HTTP RESPONSE HEADER FIELDS

Former Member
0 Kudos

Hi All,

In HTTP response I need to capture the HTTP RESPONSE HEADER FIELDS

HTTP/1.0 200 OK

Even though I wrote UDF and tick the HTTP Header Fields (Synchronous Response)

I am NOT getting the output.

Can we capture the HTTP/1.0 200 OK ? because in sm59 when I run the coonection I can see the

HTTP/1.0 200 OK in response header fields. So I need to capture this through mapping.

Any suggestion plz..because I went though all forums but not achieved

Accepted Solutions (0)

Answers (1)

Answers (1)

markangelo_dihiansan
Active Contributor
0 Kudos

Hello,

In the receiver http cc, there are at most 6 header fields that can be obtained via UDF but only if you know the name of the first pair e.g

HTTP/1.1 200 OK

Date: Tue, 17 Jul 2012 09:54:03 GMT

Server: Microsoft-IIS/6.0

X-Powered-By: ASP.NET

There is no name-value pair for the HTTP/1.1 200 OK, so I'm unsure if there is a way to capture it (aside from remote-enabling the function modules HTTP_GET and HTTP_POST and using their RESPONSE_HEADERS).

Hope this helps,

Mark

Former Member
0 Kudos

Hi Mark

Thanks for your response..but in sm59 I can see the name as response_line and value HTTP/1.1 200 OK.

So cant we use this info to grab the header fields in http adapter?