tspossible Is it possible to compress responses from application hosted by abyss? I mean about something like: http://weblogs.asp.net/owscott/archive/2004/01/12/57916.aspx (tutorial about iis compression) regards tomek
rrinc You would need a 3rd party program, however I believe Aprelium is planning to add Gzip support in a future version.
AbyssUnderground gZip compression for pages can be enabled if you use php. I can't remember the code off the top of my head but it is in the forum somewhere.
tspossible rrinc wrote You would need a 3rd party program, however I believe Aprelium is planning to add Gzip support in a future version. Can You write howto integrate it with webserver and asp.net?
aprelium-beta tspossible, You can very easily add compression to any exisiting ASP.NET application (even ones that you've not written) with the help of a ASP.NET compression module such as http://www.blowery.org/code/HttpCompressionModule.html . It's all about copying the compression module DLL in the /bin of the ASP.NET application and updating of the web.config file with a few lines declaring the module and its use scope. http://www.blowery.org/code/httpcompress_6_net2_binary.zip is the binary version of the module and the Example subdirectory in it contains a real world example of an application with its web.config file correctly updated to support tranparent HTTP compression.