Popular applications that uses "HTTP Server API" ?

Tuhin Kumar 51 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

Internet Information Services
Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
8,251 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,386 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