[Mono-list] Re: Web Services and DIME

Robert Jordan robertj at gmx.net
Mon May 30 06:11:03 EDT 2005


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



More information about the Mono-list mailing list