David
Mon Dec 11 08:27:46 CST 2006
What ISAPI Filters are installed on your web server.
What resource extensions are configured for Dynamic and Static
Compression.
.zip is not configured for compression by default. Neither do ISAPI
Filters exist by default.
//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//
Eugene Gershnik wrote:
> David Wang wrote:
> > By reading through the prior mentioned blog file, you should find that
> > you need to determine the applicable ScriptMaps property for your
> > given URL and then look through it to determine if it has a mapping
> > for
> > either '*' or '.zip'.
> >
> > Locate all ScriptMaps definitions:
> > CSCRIPT %SYSTEMDRIVE%\inetpub\AdminScripts\adsutil.vbs FIND ScriptMaps
>
> Property ScriptMaps found at:
> W3SVC
> W3SVC/1/root/Exadmin
> W3SVC/1/root/Exchange
> W3SVC/1/root/ExchWeb
> W3SVC/1/root/Microsoft-Server-ActiveSync
> W3SVC/1/root/OMA
> W3SVC/1/root/Public
>
> As you can see I have Exchange on the same box. In any event the content I
> am interested in is in a separate URL root and has nothing to do with it.
>
> > Identify which one is nearest to your URL,
>
> This is W3SVC
>
> > and then run:
> > CSCRIPT %SYSTEMDRIVE%\inetpub\AdminScripts\adsutil.vbs GET
> > <IdentifiedMetadataPath>/ScriptMaps
>
> ScriptMaps : (LIST) (26 Items)
> ".asp,C:\WINDOWS\system32\inetsrv\asp.dll,5,GET,HEAD,POST,TRACE"
> ".cer,C:\WINDOWS\system32\inetsrv\asp.dll,5,GET,HEAD,POST,TRACE"
> ".cdx,C:\WINDOWS\system32\inetsrv\asp.dll,5,GET,HEAD,POST,TRACE"
> ".asa,C:\WINDOWS\system32\inetsrv\asp.dll,5,GET,HEAD,POST,TRACE"
> ".idc,C:\WINDOWS\system32\inetsrv\httpodbc.dll,5,GET,POST"
> ".shtm,C:\WINDOWS\system32\inetsrv\ssinc.dll,5,GET,POST"
> ".shtml,C:\WINDOWS\system32\inetsrv\ssinc.dll,5,GET,POST"
> ".stm,C:\WINDOWS\system32\inetsrv\ssinc.dll,5,GET,POST"
> ".asax,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".ascx,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".ashx,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,1,GET,HEAD,POST,DEBUG"
> ".asmx,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,1,GET,HEAD,POST,DEBUG"
> ".aspx,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,1,GET,HEAD,POST,DEBUG"
> ".axd,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,1,GET,HEAD,POST,DEBUG"
> ".vsdisco,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,1,GET,HEAD,POST,DEBUG"
> ".rem,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,1,GET,HEAD,POST,DEBUG"
> ".soap,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,1,GET,HEAD,POST,DEBUG"
> ".config,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".cs,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".csproj,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".vb,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".vbproj,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".webinfo,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".licx,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".resx,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
> ".resources,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG"
>
> Neither .zip nor * is there. :-(
>
> --
> Eugene