IIS 6 has HTTP compression built in and other 3rd party tools like IIS
Accelerator add the same functionality to IIS 5 and IIS 4. IIS Accelerator
works great giving us 80% compression of some pages.

The question is, does this compression apply to included JavaScript:

<script language="javascript" src="PeopleScreen.js"></script>

Will that PeopleScreen.js file get compressed as well?

Thanks, Rob.

Re: HTTP compression by Jan

Jan
Sat May 28 15:40:13 CDT 2005

Not per default (default is *.htm, *.html and *.txt only AFAIK).
You can add extensions (for example *.js, *.css, *. aspx) manually via
metabase:
http://www.wwwcoder.com/main/parentid/170/site/3669/68/default.aspx
Or you let a tool do this for you, I use ZipEnable:
http://www.port80software.com/products/zipenable/
you can configure your settings within the 30 day trial, so you don't have
to buy ;o)

--
Jan Wurl
MCP
Berlin - Germany
"Rob Nicholson" <informed@community.nospam> schrieb im Newsbeitrag
news:efTiLl5YFHA.2796@TK2MSFTNGP09.phx.gbl...
> IIS 6 has HTTP compression built in and other 3rd party tools like IIS
> Accelerator add the same functionality to IIS 5 and IIS 4. IIS Accelerator
> works great giving us 80% compression of some pages.
>
> The question is, does this compression apply to included JavaScript:
>
> <script language="javascript" src="PeopleScreen.js"></script>
>
> Will that PeopleScreen.js file get compressed as well?
>
> Thanks, Rob.
>
>



Re: HTTP compression by Jan

Jan
Sat May 28 15:48:06 CDT 2005

Oh, you use IIS5!?
Then for built-in compression you have to do this:
http://www.microsoft.com/technet/prodtechnol/windows2000serv/technologies/iis/maintain/featusability/httpcomp.mspx

If you are not firm using cscript.exe then you can use MetaEdit instead
(like Regedit):
http://support.microsoft.com/kb/q232068/

If you are using a third party tool, then ask them.

--
Jan Wurl
MCP
Berlin - Germany
"Rob Nicholson" <informed@community.nospam> schrieb im Newsbeitrag
news:efTiLl5YFHA.2796@TK2MSFTNGP09.phx.gbl...
> IIS 6 has HTTP compression built in and other 3rd party tools like IIS
> Accelerator add the same functionality to IIS 5 and IIS 4. IIS Accelerator
> works great giving us 80% compression of some pages.
>
> The question is, does this compression apply to included JavaScript:
>
> <script language="javascript" src="PeopleScreen.js"></script>
>
> Will that PeopleScreen.js file get compressed as well?
>
> Thanks, Rob.
>
>



Re: HTTP compression by David

David
Sat May 28 16:34:36 CDT 2005

With IIS6, there are two types of compression "schemes" (static and dynamic)
that can be applied to any URL extension served by IIS. So you enable static
compression on .js extension, then if the browser makes a request for .js
URL and indicates that it supports compression, IIS will send it as
compressed.

By default, IIS6 comes with compression turned off and defined for a small
set of URLs (basically .htm, .html, .txt, .asp, .dll, .exe). You can of
course choose the applicable extensions as well as static/dynamic scheme and
the compression algorithm.

--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Rob Nicholson" <informed@community.nospam> wrote in message
news:efTiLl5YFHA.2796@TK2MSFTNGP09.phx.gbl...
IIS 6 has HTTP compression built in and other 3rd party tools like IIS
Accelerator add the same functionality to IIS 5 and IIS 4. IIS Accelerator
works great giving us 80% compression of some pages.

The question is, does this compression apply to included JavaScript:

<script language="javascript" src="PeopleScreen.js"></script>

Will that PeopleScreen.js file get compressed as well?

Thanks, Rob.




RE: HTTP compression by v-wdxu

v-wdxu
Sun May 29 20:32:38 CDT 2005

Hi Rob,

For the configuration of Http compression, the metabase.xml file is located
at %windir%\system32\inetsrv\metabase.xml. The IIsCompressionSchemes and
IIsCompressionScheme contain the configurtion information on HTTP
compression.
*Please backup this file before editting in case any error to down the
server.

Please feel free to let me know if any question. My pleasure to be of any
assistance.

Best Regards,
Wei-Dong XU
Microsoft Product Support Services
This posting is provided "AS IS" with no warranties, and confers no rights.



Re: HTTP compression by Rob

Rob
Wed Jun 08 12:31:53 CDT 2005

> You can add extensions (for example *.js, *.css, *. aspx) manually via
> metabase:

Thanks, Rob.



Re: HTTP compression by Rob

Rob
Wed Jun 08 12:32:53 CDT 2005

> Oh, you use IIS5!?

Oh, didn't realise IIS5 had HTTP compression as well - thought it was a IIS6
new feature.

Rob.