Share via


HSE_URL_MAPEX_INFO (Windows CE 5.0)

Send Feedback

This structure contains information regarding the virtual root that is to be mapped to a physical path. It is used with the HSE_REQ_MAP_URL_TO_PATH_EX request type for the ServerSupportFunction (ISAPI Extensions).

typedef struct_HSE_URL_MAPEX_INFO{CHARlpszPath[MAX_PATH];DWORDdwFlags;DWORDcchMatchingPath;DWORDcchMatchingURL;
  DWORDdwReserved1;DWORDdwReserved2;} HSE_URL_MAPEX_INFO, *LPHSE_URL_MAPEX_INFO;

Members

  • lpszPath
    Pointer to the physical path to which the virtual root maps.
  • dwFlags
    Flags that indicate if the URL has read, write, or execute permissions. These flags can also be used to indicate if encryption is required. The following table shows the possible flag values.
    Value Description
    HSE_URL_FLAGS_READ Allow for read.
    HSE_URL_FLAGS_WRITE Allow for write.
    HSE_URL_FLAGS_EXECUTE Allow for execute.
    HSE_URL_FLAGS_SSL Require SSL.
    HSE_URL_FLAGS_DONT_CACHE Do not cache; virtual root only.
    HSE_URL_FLAGS_NEGO_CERT Allow client SSL certifications.
    HSE_URL_FLAGS_REQUIRE_CERT Require client SSL certifications.
    HSE_URL_FLAGS_MAP_CERT Map SSL certification to a Windows account.
    HSE_URL_FLAGS_SSL128 Require a 128-bit SSL.
    HSE_URL_FLAGS_SCRIPT Allow for script execution.
    HSE_URL_FLAGS_SCRIPT_SOURCE Allow clients to view the source to ISAPI extensions and ASP pages.
  • cchMatchingPath
    Number of matching characters in the physical path.
  • cchMatchingURL
    Number of matching characters in the URL.
  • dwReserved1
    Reserved. Do not use.
  • dwReserved2
    Reserved. Do not use.

Requirements

Pocket PC: Pocket PC 2000 and later.
Smartphone: Smartphone 2002 and later.
OS Versions: Windows CE 3.0 and later.
Header: Httpext.h.

See Also

ServerSupportFunction (ISAPI Extensions)

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.