SOAP,在上传c#时获取上传请求的进度
我尝试通过 SOAP 请求上传文件,并且工作正常,但我无法获取请求上传量的进度。
Im trying to upload a file through a SOAP request , and it worked perfectly , but I couldnt get a progress for the uploaded amount of the request .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试以“块”形式发送文件,例如一次 1MB,而不是一次全部发送?这样,当每个块完成时,您将能够更新进度。
You could try sending the file up in "chunks", like 1MB at a time rather than sending it all up at once? That way when each chunk completes, you'll be able to update the progress.
我现在可以回答我的问题,
我不再使用 SOAP 来上传我的解决方案中的文件,我现在使用 HTTPWebRequest,
1) 是的,我正在分块上传我的大文件(每个卡盘为 1MB),
2)每个块(1 MB)可以为我提供每个 BufferSize 的进度(在我的例子中为 4 KB);
所以有一个大循环, foreach(Chunk in File) {} 。
在大循环内部还有另一个循环,因为我使用 HTTPWebRequest:
然后继续发送请求。并收到回复。
I can answer my question now,
Im not using SOAP anymore to upload my files in my solution, Im using HTTPWebRequest now,
1) yes im uploading my large files in chunks (each chuck is 1MB),
2) each chunk(1 MB) can give me progress each BufferSize (4 KB in my case);
so there is a big loop, foreach(Chunk in File) {} .
and inside the big loop there is another loop, as Im using HTTPWebRequest:
then continue to send the request. and receive the response.