I know Mule has great support for gzip compression of data using the element. However the client now wants zip compression since the file has to be placed on an FTP as a zip co
In the ZipTransformer constructor, the following is deprecated.
registerSourceType(InputStream.class); registerSourceType(byte[].class);
Use this instead:
registerSourceType(DataTypeFactory.create(InputStream.class)); registerSourceType(DataTypeFactory.create(byte[].class));