I use Apache with mod_wsgi and webpy, and when i send a file on http, a lot packets are lost.

This is my code :

web.header('Content-Type','video/x-flv')
web.header('Content-length',sizeFile)
f = file(FILE_PATH, 'rb')
    while True:
        buffer = f.read(4*1024)
        if buffer :
            yield buffer
        else :
            break
f.close()

What in my code is wrong ?

thanks.

link|improve this question
3  
Nothing in your code sends a file over http. It just reads a local file, and that code looks OK. – Tim Pietzcker Mar 25 '10 at 9:21
Well, this method is called with an url like this : blabla/myMethod/myFile and there, i don't receive all the packets whereas if i take the file "directly from apache" : static.blabla/myFile, it's work fine. – ep45 Mar 25 '10 at 9:32
feedback

closed as too localized by casperOne May 22 at 14:06

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.