What is remoting  
Author Message
Ratheesh*MCP*





PostPosted: .NET Remoting and Runtime Serialization, What is remoting Top

Hai

I want to know what is remoting in .Net.., How can it be implemented. What is its usage

thanks

Ratheesh




.NET Development9  
 
 
accident





PostPosted: .NET Remoting and Runtime Serialization, What is remoting Top

Remoting is a wonderful tool to build distributes systems (such as client/server, p2p, etc)

I am currently building a remoting application at work. We have a database server, application server, and then each employee has their own machine (so many clients)

Each user has a client application that connects to the server so they can do their normal day to day work.

This way the client application does not have access to the database, they must go threw the server, and the server can then connect to the database.

I am not sure if you play any online games, but lets use World of Warcraft as an example. You play the game on a client. The client then communicates to the server and the server does most of the work. The server then sends back information to your client to update your screen. This is the basics of remoting.

If you have any other questions just ask


 
 
Ratheesh





PostPosted: .NET Remoting and Runtime Serialization, What is remoting Top

How we can achieve remoting with .NET environment..Is it only possible with web application ..

Thanks

Ratheesh



 
 
accident





PostPosted: .NET Remoting and Runtime Serialization, What is remoting Top

With windows application. You can also use web services for web applications
 
 
Devadas Kamath





PostPosted: .NET Remoting and Runtime Serialization, What is remoting Top

NET remoting enable objects in different application domain to speak to each other. The power of remoting is in enabling message between objects when their application domains are separated across the network.
 
 
Michael Green - MSFT





PostPosted: .NET Remoting and Runtime Serialization, What is remoting Top

Ratheesh,

Please see http://msdn.microsoft.com/webservices/remoting/default.aspx pull=/library/en-us/dndotnet/html/hawkremoting.asp for a complete description of remoting.

Please let me know if you have further questions,

Michael Green - MSFT