I am building a "widget" that can be embedded in other people's websites, that talk back to my server.
Right now I am using flXHR for the cross domain asynchronous communication, and it works fine for doing GETs inside the widget.
However the major point of the widget is to allow clients to submit a form back to my server, complete with some multipart POST data (eg, the html file upload field). I need some kind of cross domain asynchronous file upload.
I can't figure out how to attach the multipart file data to the flXHR request. Is this even possible?