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

Popular posts from this blog

Is there an open source WebSockets (JavaScript) XMPP library? -

java - Is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value? -

iphone - How do I make a UIPickerView in a UIActionSheet -