Is it httpwebrequest / httpwebresponse not enough to upload larger files (2-3 GB) ?
I requested to all vb.net or c# uploader to share your opinion and alternative too
Thanks
Printable View
Is it httpwebrequest / httpwebresponse not enough to upload larger files (2-3 GB) ?
I requested to all vb.net or c# uploader to share your opinion and alternative too
Thanks
if I will simply write a file into stream i got error's
http://lulzimg.com/i22/c3ec98.jpg
Of course you do. An application can only deal with so much memory (2gb on 32), its all bout how to load up a certain size, deal with it, clear it, and start again. Even when sending over the network, it is broken down into bits to send, same with webservices using whatever protocol, even http using chunking. I have never tried it using a webrequest, but I know of service example here.