Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7003369
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:03:35+00:00 2026-05-27T21:03:35+00:00

is it possible to dump all the header fields of a TWebRequest (and TWebResponse)

  • 0

is it possible to dump all the header fields of a TWebRequest (and TWebResponse) object?
At the moment I use GetFieldByName() and print them with Writeln() but this works only if I already know the name of the header field. I’m looking for a way to obtain all header field names to enumarate each field but I didn’t find any method to do that.

I wrote a REST datasnap console application and wants to log all HTTP requests/responses to console.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T21:03:35+00:00Added an answer on May 27, 2026 at 9:03 pm

    AFAIK it is not possibile (Delphi XE2).

    I’ve used a little trink to have access to the raw headers.
    However, this is really dirty! Use at you own risk!

    The actual class request class is the TIdHTTPAppRequest (WARNING: Could be different for different type of webbroker app. I”ve not tested this code with different kind of datasnap app).

    So the trick is:

    Declare a class helper similar to the following:

      TIdHTTPAppRequestHelper = class helper for TIdHTTPAppRequest
      public
        function GetRequestInfo: TIdEntityHeaderInfo;
      end;
    
      implementation
    
      function TIdHTTPAppRequestHelper.GetRequestInfo: TIdEntityHeaderInfo;
      begin
        Result := FRequestInfo;
      end;
    

    In this way you can use this helper to have acccess to the protected FRequestInfo field.

    In the OnAction event handler you can use the following code to have all the headers names:

    procedure Twm.wmWebActionItem1Action(Sender: TObject; Request: TWebRequest;
                     Response: TWebResponse; var Handled: Boolean);
    var
      HeadersCount: Integer;
      I: Integer;
      sw: TStreamWriter;
    begin
      Response.ContentType := 'text/plain';
      Response.ContentStream := TMemoryStream.Create;
      sw := TStreamWriter.Create(Response.ContentStream);
      try
        HeadersCount := TIdHTTPAppRequest(Request).GetRequestInfo.RawHeaders.Count;
        for I := 0 to HeadersCount - 1 do
          sw.WriteLine(TIdHTTPAppRequest(Request).GetRequestInfo.RawHeaders.Names[I]);
      finally
        sw.Free;
      end;
      Handled := True;
    end;
    

    However, it is bad that TWebRequest do not allows to read the raw headers. That should be changed!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to dump all global variables in a PHP script? Say this
Is it possible to get a thread dump of a Java Web Start application?
Is it possible to see thread performance counters in dump of native c++ application
Is it posible to dump/save an in memory object so that the dump contains
Possible Duplicate: How to: URL re-writing in PHP? How can a website use an
Possible Duplicate: How to export / dump a MySql table into a text file
Possible Duplicate: PHP get all arguments as array? Within a javascript function arguments always
Currently we are analyzing a tomcat thread dump. A single thread dump of all
Is it possible to have the postgres database dump(pg_dump) using SQLAlchemy? i can get
Possible Duplicate: How can I use the Google App engine bulkloader to back up

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.