使用 Web 服务在服务器之间传输文件
我必须制作一个 .net Framework 2.0 Web 服务,该服务采用一些参数,例如源服务器名称、目标服务器名称、文件名,然后该服务会将文件从源移动到目标。 我发现的一个解决方案是使用asp.net,我制作两个页面,一个用于文件下载,一个用于文件上传,并且该页面在每台服务器上都可用。 Web 服务将向服务器发送 http 请求,服务器将发送文件或将文件保存在服务器上。
但在这里我必须将这两页放在所有服务器上。 有没有什么方法可以让我使用 .net Framework 2.0 中的 Web 服务从远程服务器读取、写入和创建文件? 如果有人知道请帮助我。 对于拼写错误和语法错误,我们深表歉意。 谢谢
i have to make one .net framework 2.0 web services which took some parameters like source server name destination server name file name then this services will move the file from source to destination.
one solution i found is using asp.net i make two pages one for file download and one for file upload and this pages are available at each server.
web services will send http request to the server and server will send file or save file on server.
but in this i have to place this two pages on all server.
Is ther any way in which i can read and write and create file from the remote server using web services in .net framework 2.0?
if any boduy know about it please help me.
sorry for spelling mistakes and grametical errors.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 Web 服务运行的帐户具有足够的权限,您可以使用如下路径:
另一种解决方案是使用 UNC 共享,但您将无法读取和写入任意路径。
If the account your web service runs under has sufficient permissions you could use paths like this:
Another solution would be to use UNC shares but you won't be able to read and write to arbitrary paths.