Home > Articles > Programming > C/C++

This chapter is from the book

Wrapping ISAPI

You now have a simple extension written directly to ISAPI, but programming against raw ISAPI is rather awkward. It sure would be nice to have some more object-oriented wrappers. Luckily, ATL Server provides exactly that. The CServerContext class is a COM object that provides a wrapper around the ECB.

   class CServerContext :                                       

       public CComObjectRootEx<CComMultiThreadModel>,           

       public IHttpServerContext {                              

   public:                                                      

       BEGIN_COM_MAP(CServerContext)                            

           COM_INTERFACE_ENTRY(IHttpServerContext)              

       END_COM_MAP()                                            

                                                                

       void Initialize(__in EXTENSION_CONTROL_BLOCK *pECB);     

                                                                

       LPCSTR GetRequestMethod();                               

       LPCSTR GetQueryString();                                 

       LPCSTR GetPathInfo();                                    

       LPCSTR GetScriptPathTranslated();                        

       LPCSTR GetPathTranslated();                              

       DWORD GetTotalBytes();                                   

       DWORD GetAvailableBytes();                               

       BYTE *GetAvailableData();                                

       LPCSTR GetContentType();                                 

       BOOL GetServerVariable(                                  

           LPCSTR pszVariableName,                              

           LPSTR pvBuffer,                                      

           DWORD *pdwSize);                                     

                                                                

       BOOL WriteClient(void *pvBuffer, DWORD *pdwBytes);       

       BOOL AsyncWriteClient(void *pvBuffer, DWORD *pdwBytes);  

       BOOL ReadClient(void *pvBuffer, DWORD *pdwSize);         

       BOOL AsyncReadClient(void *pvBuffer, DWORD *pdwSize);    

                                                                

       BOOL SendRedirectResponse(__in LPCSTR pszRedirectUrl);   

       BOOL GetImpersonationToken(__out HANDLE * pToken);       

                                                                

       BOOL SendResponseHeader(                                 

           LPCSTR pszHeader = "Content-Type: text/html\r\n\r\n",

           LPCSTR pszStatusCode = "200 OK",                     

           BOOL fKeepConn=FALSE);                               

                                                                

       BOOL DoneWithSession(__in DWORD dwHttpStatusCode);       

       BOOL RequestIOCompletion(__in PFN_HSE_IO_COMPLETION pfn, 

           DWORD *pdwContext);                                  

                                                                

       BOOL TransmitFile(                                       

           HANDLE hFile,                                        

           PFN_HSE_IO_COMPLETION pfn,                           

           void *pContext,                                      

           LPCSTR szStatusCode,                                 

           DWORD dwBytesToWrite,                                

           DWORD dwOffset,                                      

           void *pvHead,                                        

           DWORD dwHeadLen,                                     

           void *pvTail,                                        

           DWORD dwTailLen,                                     

           DWORD dwFlags);                                      

                                                                

       BOOL AppendToLog(LPCSTR szMessage, DWORD *pdwLen);       

                                                                

       BOOL MapUrlToPathEx(LPCSTR szLogicalPath, DWORD dwLen,   

           HSE_URL_MAPEX_INFO *pumInfo);                        

   };                                                           

The CServerContext class provides a somewhat more convenient wrapper for the ISAPI interface. Before you use it, you need to add an ATL module object to your project and initialize it in DLL main. This code takes care of the housekeeping:

   // Our module class definition

   class CHelloISAPI2Module :
  
   public CAtlDllModuleT<CHelloISAPI2Module> {};


   // Required global instance of module.

   CHelloISAPI2Module _AtlModule;

// Initialize / shutdown module on DLL load or unload
BOOL APIENTRY DllMain( HMODULE hModule,
  DWORD ul_reason_for_call, LPVOID lpReserved ) {
  // Set up shared data for use by CServerContext
  
   return _AtlModule.DllMain(ul_reason_for_call, lpReserved);
}

Having initialized shared data that CServerContext makes use of, we can now take advantage of CServerContext:

DWORD WINAPI HttpExtensionProc(EXTENSION_CONTROL_BLOCK *pECB) {
  CComObject< CServerContext > *pCtx;
  
   CComObject< CServerContext >::CreateInstance( &pCtx );
  
   pCtx->Initialize( pECB );
  // We use this smart pointer to ensure proper cleanup
  CComPtr< IUnknown > spContextUnk( pCtx );

  char *header =
    "<html>"
      "<head>"
        "<title>Hello from ISAPI</title> "
      "</head>"
      "<body>"
        "<h1>Hello from an ISAPI Extension</h1>";

  DWORD size = static_cast< DWORD >( strlen( header ) );
  pCtx->WriteClient( header, &size );

  char *intro = "<p>Your name is: ";
  size = static_cast< DWORD >( strlen( intro ) );
  pCtx->WriteClient( intro, &size );

  size = static_cast< DWORD >(
    strlen( pCtx->GetQueryString( ) ) );
  pCtx->WriteClient(
    
   const_cast< LPSTR >(pCtx->GetQueryString( )), &size );

  char *footer =
      "\r\n</body>\r\n"
  "</html>\r\n";

  size = static_cast< DWORD >( strlen( footer ) );
  pCtx->WriteClient( footer, &size );

  return HSE_STATUS_SUCCESS;
}

The bold lines show where we've replaced direct calls to the ECB with calls via the context. The WriteClient method is at least a little shorter, but we actually haven't gained much at this point. Luckily, there's more API wrapping to be done.

Request and Response Wrappers

Anyone who has done ASP or ASP.NET development is familiar with the Request and Response objects. The former gives access to the contents of the HTTP request: URL, query string, cookies, and so on. The latter gives you a way to write data to the output stream. ATL Server provides similar wrappers that make both reading and writing from the ECB much more pleasant.

The CHttpRequest object is a wrapper object that lets you get at the contents of the HTTP request:

   class CHttpRequest : public IHttpRequestLookup {         

   public:                                                  

     // Constructs and initializes the object.              

     CHttpRequest(                                          

       IHttpServerContext *pServerContext,                  

       DWORD dwMaxFormSize=DEFAULT_MAX_FORM_SIZE,           

       DWORD dwFlags=ATL_FORM_FLAG_NONE);                   

                                                            

     CHttpRequest(IHttpRequestLookup *pRequestLookup);      

                                                            

     // Access to Query String parameters as a collection   

     const CHttpRequestParams& GetQueryParams() const;      

                                                            

     // Get the entire raw query string                     

     LPCSTR GetQueryString();                               

                                                            

     ... Other methods omitted - we'll talk about them later

   }; // class CHttpRequest                                 

The CHttpRequest object gives you easy access to everything in the request. Using the CHttpRequest object simplifies getting at query string variables. In the raw C++ extension code, I cheated and just passed data (such as ?Chris), to make using that data easier. However, typical web pages take named query parameters separated with the ampersand (&) and potentially containing special characters encoded in hex:

http://localhost/HelloISAPI2/HelloISAP2.dll?name=Chris&motto=I%20Love%20ATL

Unfortunately, decoding and parsing query strings in their full glory requires quite a bit of work to get right, which is where ATL Server really starts to shine via the CHttpRequest class:

DWORD WINAPI HttpExtensionProc(EXTENSION_CONTROL_BLOCK *pECB) {
  CComObject< CServerContext > *pCtx;
  CComObject< CServerContext >::CreateInstance( &pCtx );
  pCtx->Initialize( pECB );
  // We use this smart pointer to ensure proper cleanup
  CComPtr< IUnknown > spContextUnk( pCtx );

  CHttpRequest request( pCtx );

  char *header =
    "<html>"
      "<head>"
        "<title>Hello from ISAPI</title>"
      "</head>"
      "<body>"
        "<h1>Hello from an ISAPI Extension</h1>";

  DWORD size = static_cast< DWORD >( strlen( header ) );
  pCtx->WriteClient( header, &size );

  CStringA name;
  name = request.GetQueryParams( ).Lookup( "name" );
  if( name.IsEmpty( ) ) {
    char *noName = "<p>You didn't give your name";
    size = static_cast< DWORD >( strlen( noName ) );
    pCtx->WriteClient( noName, &size );
  }
  else {
    char *intro = "<p>Your name is: ";
    size = static_cast< DWORD >( strlen( intro ) );
    pCtx->WriteClient( intro, &size );
    size = name.GetLength( );
    pCtx->WriteClient( name.GetBuffer( ), &size );
  }

  char *footer =
        "\r\n</p>\r\n"
      "\r\n</body>\r\n"
    "</html>\r\n";

  size = static_cast< DWORD >( strlen( footer ) );
  pCtx->WriteClient( footer, &size );

  return HSE_STATUS_SUCCESS;
}

The bold lines show where we're calling into the CHttpRequest object and parsing the named query parameter name. If it's encoded with embedded spaces or other special characters, or if it's included with other query parameters, ATL Server parses it correctly.

One minor thing that might seem odd is the use of CStringA in the previous code sample. Why didn't I just use the plain CString? If you look in the documentation for CHttpRequestParams::Lookup (the method I used to get the query string values), you'll see this:

   class CHttpRequestParams : ... {     

     ...                                

     LPCSTR Lookup(LPCSTR szName) const;

     ...                                

   };                                   

Notice that the return type is LPCSTR, not LPCTSTR. In general, when dealing with strings coming in or going out via HTTP, ATL Server explicitly uses 8-bit ANSI character strings.

The CString class is actually a string of TCHARs. As you recall from Chapter 2, "Strings and Text," this means that the actual type of the underlying characters changes depending on your compile settings for Unicode. However, the return type for the Lookup method never changes: It's always ANSI. So, the sample code uses CStringA explicitly to say, "I don't care what the UNICODE compile setting is, I always want this to be 8-bit characters."

On the output side, ATL Server provides the CHttpResponse class:

   class CHttpResponse :                                            

     public IWriteStream,                                           

     public CWriteStreamHelper {                                    

   public:                                                          

     // Implementation: The buffer used to store the                

     // response before the data is sent to the client.             

     CAtlIsapiBuffer<> m_strContent;                                

                                                                    

     // Numeric constants for the HTTP status codes                 

     // used for redirecting client requests.                       

     enum HTTP_REDIRECT {                                           

       HTTP_REDIRECT_MULTIPLE=300,                                  

       HTTP_REDIRECT_MOVED=301,                                     

       HTTP_REDIRECT_FOUND=302,                                     

       HTTP_REDIRECT_SEE_OTHER=303,                                 

       HTTP_REDIRECT_NOT_MODIFIED=304,                              

       HTTP_REDIRECT_USE_PROXY=305,                                 

       HTTP_REDIRECT_TEMPORARY_REDIRECT=307                         

     };                                                             

                                                                    

     // Initialization                                              

                                                                    

     CHttpResponse();                                               

     CHttpResponse(IHttpServerContext *pServerContext);             

     BOOL Initialize(IHttpServerContext *pServerContext);           

     BOOL Initialize(IHttpRequestLookup *pLookup);                  

                                                                    

     // Writing to the output                                       

                                                                    

     BOOL SetContentType(LPCSTR szContentType);                     

     HRESULT WriteStream(LPCSTR szOut, int nLen, DWORD *pdwWritten);

     BOOL WriteLen(LPCSTR szOut, DWORD dwLen);                      

                                                                    

     // Redirect client to another URL                              

     BOOL Redirect(LPCSTR szUrl,                                    

       HTTP_REDIRECT statusCode=HTTP_REDIRECT_MOVED,                

       BOOL bSendBody=TRUE);                                        

     BOOL Redirect(LPCSTR szUrl, LPCSTR szBody,                     

       HTTP_REDIRECT statusCode=HTTP_REDIRECT_MOVED);               

                                                                    

     // Manipulate various response headers                         

                                                                    

     BOOL AppendHeader(LPCSTR szName, LPCSTR szValue);              

     BOOL AppendCookie(const CCookie *pCookie);                     

     BOOL AppendCookie(const CCookie& cookie);                      

     BOOL AppendCookie(LPCSTR szName, LPCSTR szValue);              

     BOOL DeleteCookie(LPCSTR szName);                              

                                                                    

     void ClearHeaders();                                           

     void ClearContent();                                           

                                                                    

     // Send the current buffer to the client                       

     BOOL Flush(BOOL bFinal=FALSE);                                 

     ... other methods omitted for clarity                          

     }                                                              

   }; // class CHttpResponse                                        

The CHttpResponse class provides all the control you need to manipulate the response going back to the client. But the best thing about CHttpResponse isn't in this class definition—it's in the base class, CWriteStreamHelper:

   class CWriteStreamHelper {                             

   public:                                                

     ... Other methods omitted for clarity                

                                                                    

     CWriteStreamHelper& operator<<(LPCSTR szStr);        

     CWriteStreamHelper& operator<<(LPCWSTR wszStr);      

     CWriteStreamHelper& operator<<(int n);               

     CWriteStreamHelper& operator<<(short int w);         

     CWriteStreamHelper& operator<<(unsigned int u);      

     CWriteStreamHelper& operator<<(long int dw);         

     CWriteStreamHelper& operator<<(unsigned long int dw);

     CWriteStreamHelper& operator<<(double d);            

     CWriteStreamHelper& operator<<(__int64 i);           

     CWriteStreamHelper& operator<<(unsigned t64 i);      

     CWriteStreamHelper& operator<<(CURRENCY c);          

   };                                                     

These operator<< overloads mean that CHttpResponse can be used much like C++ iostreams can, and they make it much, much easier to build up your output. Using CHttpResponse, our final HttpExtensionProc now looks like this:

DWORD WINAPI HttpExtensionProc(EXTENSION_CONTROL_BLOCK *pECB) {
  CComObject< CServerContext > *pCtx;
  CComObject< CServerContext >::CreateInstance( &pCtx );
  pCtx->Initialize( pECB );
  // We use this smart pointer to ensure proper cleanup
  CComPtr< IUnknown > spContextUnk( pCtx );

  CHttpRequest request( pCtx );
  CHttpResponse response( pCtx );

  
   response << "<html>" <<
    
   "<head>" <<
      
   "<title>Hello from ISAPI</title>" <<
    
   "</head>" <<
    
   "<body>" <<
      
   "<h1>Hello from an ISAPI Extension</h1>";

  CStringA name;
  name = request.GetQueryParams( ).Lookup( "name" );
  if( name.IsEmpty( ) ) {
    response << "<p>You didn't give your name";
  } else {
    response << "<p>Your name is: " << name;
  }

  response << "</p>" <<
      
   "</body>" <<
    
   "</html>";

  return HSE_STATUS_SUCCESS;
}

This use of the CHttpResponse object gives us a much simpler programming model. All those ugly casts are gone, and we don't need to worry about presizing anything.

The use of the CServerContext, CHttpRequest, and CHttpResponse objects does make the basics of request processing easier, but other issues haven't yet been addressed. IIS does some subtle work with threading, and if you don't handle threads properly, you'll destroy your server's performance. There's also dealing with form fields and form validation, something every web app has to do. Finally, does it really make sense that you have to recompile your C++ code every time you want to change some HTML?

To address these issues, let's take a look at how ATL Server implements the ISAPI extension.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020