Well you can definitely do that with LuaSocket: http://stackoverflow.com/questions/12202301/upload-file-to-a-server-using-lua You just need to include socket.lua file to your project. You can find socket.lua file in your Gideros installation folder, inside All Plugins/LuaSocket/source Maybe will need to include other LuaSocket files from the same folder, didn't check.
But I think it might also be possible to do it with UrlLoader in the same way, by simply using POST and reading in the file and setting header to "multipart/form-data"
I searched a lot and did several tests using this code as a basis, but the file was not going along with the message to the server. If I find the solution I'll post here.
Comments
http://stackoverflow.com/questions/12202301/upload-file-to-a-server-using-lua
You just need to include socket.lua file to your project. You can find socket.lua file in your Gideros installation folder, inside All Plugins/LuaSocket/source
Maybe will need to include other LuaSocket files from the same folder, didn't check.
But I think it might also be possible to do it with UrlLoader in the same way, by simply using POST and reading in the file and setting header to "multipart/form-data"