.net中有没有像RDS(远程数据服务)这样的概念?
.net中有没有像RDS(远程数据服务)这样的概念???
Is there any concept like RDS(Remote Data Services) in .net ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
.net中有没有像RDS(远程数据服务)这样的概念???
Is there any concept like RDS(Remote Data Services) in .net ???
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
WCF(Windows 通信基础)
.Net 远程处理
ASP.NET Ajax。
这些都是您的选择,其中任何一个都比 RDS 领先一光年。
WCF (Windows Communication Foundation)
.Net Remoting
ASP.NET Ajax.
Those are your options and any one of them is a light year ahead of RDS.
看一下 ASP.NET AJAX 和脚本服务:
http:// www.asp.net/learn/ajax/tutorial-05-cs.aspx
浏览器中的Javascript调用服务器上的Web服务可能是最接近RDS的东西。 Web 服务不一定必须是 XML Web 服务,您可以使用 JSON 作为替代方案。
Take a look at ASP.NET AJAX and script services:
http://www.asp.net/learn/ajax/tutorial-05-cs.aspx
Javascript in the browser calling web services on the server is probably the closest thing to RDS. The web services don't necessarily have to be XML web services, you could use JSON as an alternative.
如果你的意思是VB6的RDS.DataSpace。 在.NET中,您可以使用WebServices(基于http,更类似于RDS),或Remoting(基于tcpip,更类似于DCOM,无需多个端口开放)。
If what you mean is VB6's RDS.DataSpace. In .NET, you can use either WebServices(http-based, more analogous to RDS), or Remoting(tcpip-based, more analogous to DCOM, sans the multiple opening of ports).