Hello, I am planning to use pipes-http for AWS S3 put/get operations (involving big binary objects). I noticed that the pipes-http `stream` api mentions that the server must support chunked encoding. So, I looked up AWS documentation <http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-streaming.html> which mentions that they have a different way of doing chunking (basically, adding signature to every chunk).
I also checked `aws` and `amazonka-s3` packages - it seems to me that they are not compatible with pipes-http because they use conduit. Please correct me if I got this wrong. So, it seem to me I must write my own HTTP request/response using `pipes` for AWS S3 operations, and must write custom chunking. If any one has already done this before, and could share tips, that will be very helpful. Thanks. -- You received this message because you are subscribed to the Google Groups "Haskell Pipes" group. To unsubscribe from this group and stop receiving emails from it, send an email to haskell-pipes+unsubscr...@googlegroups.com. To post to this group, send email to haskell-pipes@googlegroups.com.