IIS기반 ISAPI에서 ISAPI가 구동되는 웹서버의 서버 경로를 확인하기 위한 방법으로,
아래의 프로퍼티를 이용하여 확인 할 수 있다.
procedure TWebModule2.WebModule2WebActionItem1Action(Sender: TObject;
Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
begin
response.HTTPRequest.PathInfo : /test
response.HTTPRequest.InternalScriptName : /scripts/project2.dll
response.HTTPRequest.PathTranslated : c:\inetpub\wwwroot\test
response.HTTPRequest.InternalPathInfo : /test
end;