There are several HTML5 features (BlobBuilder, ArrayBuffer) and pre-HTML5 hacks (charset=x-user-defined) used to handle binary data in XMLHttpRequest.
As far as I can tell, nothing can make Safari upload binary data that isn't in a file interactively selected by the user, and transmitted as "multipart/form-data".
In fact, the data I'm trying to send is already in the filesystem, and I have a file:// URL to it. This is a PhoneGap app. But there's no way to get the browser to accept that due to the security risk, and PhoneGap's FileTransfer feature is useless because it lacks progress bar support.
At this point, I'm willing to totally throw compatibility out since the HTML and JavaScript files will be downloaded and stored client side. And the app already requires an iPhone 4 so I can demand a recent browser version. Is there any way to make Safari 5.1 upload in binary?