I need to create a way to upload a bytestream using chunked encoding.
I have a byte array that contains an audio file, I would like to send that file to a server using a chunked stream.
I've been able to do a chunked upload via a native socket but I would really like to do this via one of the NSURL (NSURLConnection?) libs. Is that possible?
Thanks!