Posting binary data

2010-11-17 Thread Devin Asay
Hi all, One of my students is doing a Rev project in which he needs to post binary data (a .mov file, in this case) to a web server. I've never done this, but I'm told that in a standard web form one sets the enctype attribute of a form input to indicate that the data being posted is binary.

Re: Posting binary data

2010-11-17 Thread Mark Schonewille
Hi Devin, Before using the post command, execute the following line: set the httpHeaders to Content-type: application/binary cr \ Content-Transfer-Encoding: binary cr \ Content-Length: length of your data in bytes Let us know if this works for you. -- Best regards, Mark Schonewille

Re: Posting binary data

2010-11-17 Thread Devin Asay
On Nov 17, 2010, at 12:15 PM, Mark Schonewille wrote: Hi Devin, Before using the post command, execute the following line: set the httpHeaders to Content-type: application/binary cr \ Content-Transfer-Encoding: binary cr \ Content-Length: length of your data in bytes Let us know