Re: Sending a File Over HTTP
- Posted by useless_ Aug 08, 2013
- 1900 views
euphoric said...
useless_ said...
euphoric said...
How do you send a large file over the Internet via HTTP with a Euphoria program?
I can program both the client and server (and both are programmed in Euphoria), I just need to know the best way. Is it necessary to use multi-part from the Euphoria program to push a file to a server?
Thanks!
Use POST, but why use http?
useless
Ah, yes! POST! Why didn't I think of that. Thanks, kat!
What else would I use, BTW?
You could use PUT, it's like a hybrid FTP in the HTTP protocol. I imagine not everyone supports it.
https://www.google.com/search?q=PUT+http
useless