vote up 1 vote down star

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!

flag

2 Answers

vote up 2 vote down

My experience with the NSURLConnection classes has been awful. They are full of memory leaks.

After much trial and failure, I now use an iPhone compiled version of libcurl; it's far better, see here..

http://www.iphonedevsdk.com/forum/iphone-sdk-development/4580-curl-anyone-using-their-app.html

link|flag
No idea why this was voted down, but I found myself in the same situation of having massive leaks when using NSURLConnection. – Alfons Nov 13 '08 at 3:42
vote up 0 vote down

This is useful code

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.