Lluis,
I fear there isn't any way other than POST. Well, you could also send the files as a byte array parameter, but you should only do it if the files are known to be small.
Or he uses chunked uploads. These are not quite optimal but they scale very well. Sample trivial API: SomeOpaqueHandle Open(...); void Write(SomeOpaqueHandle h, byte[] buffer); void Close(SomeOpaqueHandle h); Rob _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
