远程处理中的文件传输
我是 .net 远程处理的新手,我在 .net 远程处理上做了一些示例应用程序。我可以轻松地 通过远程对象从服务器获取文件,但我不知道如何将文件发送到服务器端,如果可以通过接口意味着如何设计它。给我一些建议和链接,这对我很有用朝正确的方向行驶
I'm new to .net remoting,i done few sample applications on .net remoting.i can easily
get a file from the server through the remote object but i dont know how to send a file to the server side ,if it is possible through a interface means how to design it.give me some suggestions and links ,it will be useful for me to drive in the right direction
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要发送文件,您可以重复调用服务器上的方法以逐块向其提供文件。像这样:
To send a file, you could repeatedly call a method on the server to give it the file chunk by chunk. Like this:
您必须实施此行为。客户端读取文件并发送字节。服务器接收字节并写入文件。还有更多内容,但这是您需要做的基础知识。
You must implement this behavior. The client reads the file and sends the bytes. The server receives the bytes and writes the file. There is more to it, but that is the basics of what you will need to do.