How do I upload large (> 25MB) files to a web service?

后端 未结 8 1833
野趣味
野趣味 2020-12-07 15:56

I have a web service that takes a byte[] and saves it.

This works fine for \"small\" files, but once I hit a certain size the web service fails and returns \"The req

8条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-07 16:45

    This doesn't specifically answer you question, but what I've done in the past is use WCF to transfer file names/paths/listings, but then use an FTP library to transfer the file via FTP.

提交回复
热议问题