From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,6bd623312637f478 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,UTF8 Received: by 10.180.84.234 with SMTP id c10mr1347480wiz.4.1351391110151; Sat, 27 Oct 2012 19:25:10 -0700 (PDT) Path: q13ni70611wii.0!nntp.google.com!feeder1.cambriumusenet.nl!feed.tweaknews.nl!194.109.133.84.MISMATCH!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!border4.nntp.ams.giganews.com!border2.nntp.ams.giganews.com!nntp.giganews.com!news.panservice.it!feeder.erje.net!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail From: Okasu Newsgroups: comp.lang.ada Subject: Re: ZLIB_ERROR with AWS Date: Sat, 20 Oct 2012 22:26:43 +0000 (UTC) Organization: A noiseless patient Spider Message-ID: References: <1rlmakeghhe91$.j7n87jxwku6w.dlg@40tude.net> <50831075.6040802@obry.net> <508316CB.7030709@obry.net> Mime-Version: 1.0 Injection-Date: Sat, 20 Oct 2012 22:26:43 +0000 (UTC) Injection-Info: mx04.eternal-september.org; posting-host="bc9127a96e16ddc323f05fe298adcf6a"; logging-data="22721"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/ys3F3V6K8ofVjV13syqP4" User-Agent: slrn/0.9.9p1 (Linux) Cancel-Lock: sha1:mMNytvPQDu3A0LqNkd97JUwTiaA= Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Date: 2012-10-20T22:26:43+00:00 List-Id: On 2012-10-20, Okasu wrote: > On 2012-10-20, Pascal Obry wrote: >> Le 20/10/2012 23:15, Okasu a écrit : >>> Oh, thanks a lot! >>> Maybe there is some catch like this with zlib issue too? >> >> With Zlib you can tell if the one from the system is to be used or not. >> >> $ make ZLIB=false setup >> >> Will force AWS to build it's own version of Zlib. >> > Great, thanks again. I've make AWS with "make SOCKET=openssl ZLIB=false setup" and SSL works fine now. But "raised ZLIB.ZLIB_ERROR : DATA_ERROR: incorrect header check" still persists. Any suggestions? > procedure Finalize (...) is > begin > Ada.Text_IO.Put_Line > ( "#1 was:" > & Ada.Exceptions.Exception_Information > ( GNAT.Most_Recent_Exception.Occurrence > ) ); > ... > > at the end of the Finalize you add: > > ... > exception > when Error : others => > Ada.Text_IO.Put_Line > ( "#2 was:" > & Ada.Exceptions.Exception_Information (Error) > ); > raise; > end Finalize; With zlib case gives nothing but same error.