You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Kellogg, Richard" <RK...@MICROS.COM> on 2003/06/04 20:34:59 UTC

Re: GZip Compression between Axis 1.1 Beta and Microsoft .NET Framework

For compatibilty with the Microsoft .NET Framework 1.1, you need to add the following to the C# HttpWebResponseDecompressed class.

public override WebHeaderCollection Headers 
{
	get
	{
		return response.Headers;
	}
}

Is anyone else out there using this code?  I would like to package it up for inclusion within Axis 1.2.
Rick Kellogg