compression - Compress file before upload via http -
Is it possible to insert data from the client's browser (file upload) to the server?
Flash, Silverlight and other techniques are OK!
Browsers never compress uploaded data as they do not have any way of knowing that The server supports it.
The downloaded content can be compressed because the accept-encoding request header allows the browser to notify the server, which it supports compressed content. Unfortunately, there is no similar protocol that works in another way and prompts the server to the browser, which supports it compression.
If you have control over the server and the client (for example using silver, flash) then you can use compressed request bodies
Comments
Post a Comment