HSE_REQ_MAP_URL_TO_PATH

This support function allows your ISAPI extension to map a logical URL path to a physical path.

Here are some examples of virtual-to-physical path mappings:

/scripts becomes C:\InetPub\scripts

/scripts/oop becomes C:\InetPub\scripts\oop

Important   This support function is deprecated in IIS version 5.0. You should use HSE_REQ_MAP_URL_TO_PATH_EX instead.

BOOL ServerSupportFunction(

  HCONN ConnID,  

  DWORD HSE_REQ_MAP_URL_TO_PATH, 

  LPVOID lpvBuffer,  

  LPDWORD lpdwSize,  

  LPDWORD lpdwDataType

);

 

Parameters
ConnID
Specifies the connection identifier of the client to which the response data should be sent.
lpvBuffer
Points to a buffer that should contain the logical path to map upon entry, and will contain the physical path upon return.
lpdwSizeofBuffer
Points to the size of the buffer specified in lpvBuffer.
lpdwDataType
Points to a HSE_URL_MAPEX_INFO data structure.