tags:

views:

174

answers:

3

Is there any concept like RDS(Remote Data Services) in .net ???

A: 

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.

Kev
+1  A: 

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.

+1 just for the username alone
Kev
A: 

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).

Michael Buen

related questions