Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > Other .NET > .NET Web Services
|
.NET Web Services Discussions about .NET XML Web Service technologies including ASMX files, WSDL and SOAP.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the .NET Web Services section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 23rd, 2008, 11:47 AM
Registered User
 
Join Date: Apr 2008
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default HttpVersion.Version10 and compression

Hello All,
  We are using .Net 1.1 as a web service client behind a proxy. To solve connection issues, we have followed advice in this forum and others and added

  request.KeepAlive = false;
  request.ProtocolVersion = HttpVersion.Version10;

to our code, which worked and solved our problem. Now to improve performance we are trying to get Decompression to work. In .Net 2.0 it is very easy, just add EnableDecompression=true, but in 1.1 there are some hoops to go through. We found the answer at http://basildoncoder.com/blog/catego...coding/dotnet/
This works but only if we do not set
  request.ProtocolVersion = HttpVersion.Version10;

Is there a way around this or do we have to choose between compression or a connection that works?

Thanks for any insight,
Richard

 
Old April 23rd, 2008, 04:15 PM
Registered User
 
Join Date: Apr 2008
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

The solution is to edit the metabase.xml and change HcNoCompressionForHttp10 to be false. Then restart the IIS server.





Similar Threads
Thread Thread Starter Forum Replies Last Post
tiff compression sandrina C# 2005 1 December 4th, 2013 02:42 AM
Image Compression vaibhav VB How-To 1 July 3rd, 2008 06:43 AM
Image Compression 4wrh VB How-To 5 May 24th, 2005 05:39 PM
compression jaya_malini Java GUI 0 May 5th, 2005 10:01 AM
wav compression jothi Pro VB 6 0 April 26th, 2005 02:12 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.