Return-Path: Delivered-To: apmail-xerces-c-users-archive@www.apache.org Received: (qmail 87530 invoked from network); 3 Sep 2009 08:16:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Sep 2009 08:16:34 -0000 Received: (qmail 7751 invoked by uid 500); 3 Sep 2009 08:16:34 -0000 Delivered-To: apmail-xerces-c-users-archive@xerces.apache.org Received: (qmail 7729 invoked by uid 500); 3 Sep 2009 08:16:34 -0000 Mailing-List: contact c-users-help@xerces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: c-users@xerces.apache.org Delivered-To: mailing list c-users@xerces.apache.org Received: (qmail 7719 invoked by uid 99); 3 Sep 2009 08:16:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Sep 2009 08:16:33 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [131.239.30.131] (HELO ntmamx1.progress.com) (131.239.30.131) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Sep 2009 08:16:25 +0000 Received: from ntmamx1.progress.com (127.0.0.1) by ntmamx1.progress.com (MlfMTA v3.2r9) id hjttm20171sd for ; Thu, 3 Sep 2009 04:16:13 -0400 (envelope-from ) Received: from progress.com ([172.16.3.168]) by ntmamx1.progress.com (SonicWALL 7.1.1.1995) with ESMTP; Thu, 03 Sep 2009 04:16:13 -0400 Received: from NTEXFE02.bedford.progress.com (ntexfe02 [10.128.10.26]) by progress.com (8.13.8/8.13.8) with ESMTP id n838G4qN029472 for ; Thu, 3 Sep 2009 04:16:04 -0400 (EDT) Received: from [127.0.0.1] ([172.16.204.173]) by NTEXFE02.bedford.progress.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Thu, 3 Sep 2009 04:16:03 -0400 Message-ID: <4A9F7B40.8090305@datadirect.com> Date: Thu, 03 Sep 2009 10:16:00 +0200 From: Alberto Massari User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: c-users@xerces.apache.org Subject: Re: parse compressed xml-files with xerces-c++ References: <85431DC6-8924-4A7D-86BF-09759512B2A9@gmx.de> In-Reply-To: <85431DC6-8924-4A7D-86BF-09759512B2A9@gmx.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 03 Sep 2009 08:16:04.0147 (UTC) FILETIME=[C7AC6830:01CA2C6E] X-Mlf-Version: 7.1.1.1995 X-Mlf-UniqueId: o200909030816130338856 X-Virus-Checked: Checked by ClamAV on apache.org There is no built-in support for unzipping a source document on the fly; you should implement it by deriving a new class from InputSource (using MemBufInputSource as a template) where you decompress the file when requested for a new chunk of data. Alberto David Wojnar wrote: > Hi, > I'm new to xerces and i was wondering whether there is a way to parse > compressed files(zlib,gzip and so on) with xerces directly? > > thank you in advance, > D.W. >