c# - ASMX file upload -


is there way upload file local filesystem folder in server using asmx web services(no wcf, don't ask why:)?

upd

p.s.file size can 2-10 gb

when developing free tool upload large files server, using .net 2.0 , web services.

to make application more error tolerant large files, decided not upload 1 large byte[] array instead "chuncked" upload.

i.e. uploading 1 mb file, call upload soap function 20 times, each call passing byte[] array of 50 kb , concating on server again.

i count packages, when 1 drops, try upload again several times.

this makes upload more error tolerant , more responsive in ui.

if interested, this cp article of tool.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -