HSE_URL_MAPEX_INFO
A version of this page is also available for
4/8/2010
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).
Syntax
typedef struct _HSE_URL_MAPEX_INFO{
CHAR lpszPath[MAX_PATH];
DWORD dwFlags;
DWORD cchMatchingPath;
DWORD cchMatchingURL;
DWORD dwReserved1;
DWORD dwReserved2;
} 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
Header | httpext.h |
Windows Embedded CE | Windows CE 3.0 and later |
Windows Mobile | Pocket PC 2000 and later, Smartphone 2002 and later |