Return-Path: Delivered-To: apmail-ws-axis-c-user-archive@www.apache.org Received: (qmail 29294 invoked from network); 2 Oct 2009 13:20:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Oct 2009 13:20:44 -0000 Received: (qmail 14932 invoked by uid 500); 2 Oct 2009 13:20:44 -0000 Delivered-To: apmail-ws-axis-c-user-archive@ws.apache.org Received: (qmail 14913 invoked by uid 500); 2 Oct 2009 13:20:44 -0000 Mailing-List: contact axis-c-user-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C User List" Reply-To: "Apache AXIS C User List" Delivered-To: mailing list axis-c-user@ws.apache.org Received: (qmail 14904 invoked by uid 99); 2 Oct 2009 13:20:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 13:20:44 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [208.87.136.232] (HELO sv4-mta-51b.us.emailfiltering.com) (208.87.136.232) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2009 13:20:33 +0000 Received: from mx.webroot.com ([216.17.231.32]) by sv4-mta-51b.us.emailfiltering.com with emfmta (version 4.0.0.434.1.rd-3.2.3-libc2.3.2) vanilla id 201417754 for axis-c-user@ws.apache.org; Fri, 02 Oct 2009 06:20:11 -0700 Received: from 172.16.10.34 ([172.16.10.34]) by CORBDRMX1.boulder.webroot.com ([10.10.1.25]) with Microsoft Exchange Server HTTP-DAV ; Fri, 2 Oct 2009 13:20:10 +0000 Message-ID: <509635B8-9746-4ABF-AB8B-B5B86FDDE637@webroot.com> From: "Murphey McCloy" To: "Apache AXIS C User List" In-Reply-To: <8d38ca0a0910020611r226bc42fn83cff53260aa95af@mail.gmail.com> Content-Type: text/plain; format=flowed; delsp=yes; charset="us-ascii" Thread-Topic: Axis2/C and mod_gzip Thread-Index: AcpDYxFMllaDAS1FQe29NuRd1ohv7w== Content-Transfer-Encoding: 7bit MIME-Version: 1.0 (iPhone Mail 7C144) Subject: Re: Axis2/C and mod_gzip Date: Fri, 2 Oct 2009 07:19:56 -0600 References: <8d38ca0a0910020611r226bc42fn83cff53260aa95af@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org Assuming you are using httpd, mod_deflate should work fine. The browser should decompress it for you. All I had to do to get compressed responses was add the: Set outputfilter deflate Config to httpd.conf And I was good to go. Compressing requests was another matter entirely, but the code fixes for that have been accepted, I believe, and should also be relatively easy, if needed. On Oct 2, 2009, at 7:11 AM, "Sam Carleton" wrote: > I am wondering, my Axis2/C server returns some large data sets to > the .Net client. To make development easier, the WSDL element names > are a bit long and verbose, but that adds useless size to an already > large dataset. > > Is it possible to use something like mod_gzip to compress the > results of the result set? If so is there something special I would > need to do on the client side, which is a web browser, or will the > web browser decompress it before giving it to the Silverlight > application? Anyone know? > > Sam