You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "ray (JIRA)" <ji...@apache.org> on 2011/05/27 22:57:47 UTC

[jira] [Commented] (CAMEL-4024) support decompression of zip files

    [ https://issues.apache.org/jira/browse/CAMEL-4024?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13040436#comment-13040436 ] 

ray commented on CAMEL-4024:
----------------------------

Example usage:

{code}
        from(fromUri)
                .split().method(OuterZipFileDecompressingSplitter.class, "split")
                .streaming()
                .parallelProcessing()
                .to("direct:innerZipFile");

        from("direct:innerZipFile")
                .split().method(InnerZipFileDecompressingSplitter.class, "split")
                .streaming()
                .parallelProcessing()
                .to("direct:furtherProcessing");
{code}

> support decompression of zip files
> ----------------------------------
>
>                 Key: CAMEL-4024
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4024
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-core
>    Affects Versions: 2.7.1
>         Environment: All
>            Reporter: ray
>            Priority: Minor
>             Fix For: Future
>
>         Attachments: InnerZipFileDecompressingSplitter.java, OuterZipFileDecompressingSplitter.java
>
>
> Two cases: Zip files with zip files inside (wrapping zip files) and inner zip files with uncompressed payloads.  I haven't really thought through how to deal with all of the options in these cases but I will attach the code to deal with the simple ones :)

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira