Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I always had an "Error writing request body to server" when I uploading my video to Youtube.

It seems like something to do with the firewalls....

Anyway, it was solved by adding

call service.setChunkedMediaUpload(MediaService.NO_CHUNKED_MEDIA_REQUEST)

which is uploading the video as one big file instead of in chunks.

However, I'm having a new problem now, when I upload a large video(83M), It complains about the JAVA Heap Space (Java exception thrown: java.lang.OutOfMemoryError: Java heap space.)

I don't want to increase the heap space cause you never know how big the video will be, So its a Catch-22 situation to me...

I prefer to upload the youtube video by chunk but don't know where to start with.....

how can I solve this error???? "Error writing request body to server"

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.