Popular applications that uses "HTTP Server API" ?

Tuhin Kumar 56 Reputation points
2022-09-30T15:20:06.427+00:00

I am thinking of using the Windows Provided "HTTP Server API"(https://learn.microsoft.com/en-us/windows/win32/http/http-api-start-page) for a Web Server product in C++. It will be helpful if the names of some of the popular applications that uses "HTTP Server API" can be provided.

Thank You

Windows development Internet Information Services
Windows for business Windows Client for IT Pros User experience Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,916 Reputation points
    2022-10-04T08:15:20.74+00:00

    Hi,

    Thank you for posting your query.

    Kindly check the information provided below to answer your query.

    The following list identifies a typical sequence of operations that use the HTTP Server API:

    Initialize the HTTP Server API by using the HttpInitialize function.
    Create a request queue by using the HttpCreateHttpHandle function.
    Register one or more URLs by using the HttpAddUrl function.
    Receive incoming requests directed to registered URLs by using the HttpReceiveHttpRequest function and send HTTP responses for these requests by using the HttpSendHttpResponse function.
    (Optional) When sending a response, send an additional entity body by using the HttpSendResponseEntityBody function.
    Perform clean-up operations by using the HttpRemoveUrl, CloseHandle and HttpTerminate functions.

    Go to this link for your reference https://learn.microsoft.com/en-us/windows/win32/http/http-server-api-overview

    -------------------------------------------------------------------------------------------------------------------------------------

    If the answer is helpful kindly click "Accept as Answer" and upvote it. Thanks.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.