This is a discussion on What is .NET Remoting ? within the ASP and ASP.NET Programming forums, part of the Web Development category; What is .NET Remoting ?....
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi NET remoting is replacement of DCOM. Using .NET remoting you can make remote object calls which lie in different Application Domains. As the remote objects run indifferent process client calling the remote object can not call it directly. So the client uses a proxy which looks like a real object. When client wants to make method call on the remote object it uses proxy for it. These method calls are called as “Messages”. Messages are serialized using “formatter” class and sent to client “channel”. Client Channel communicates with Server Channel. Server Channel uses as formatter to deserialize the message and sends to the remote object. |
| |||
| .NET Remoting is an enabler for application communication. It is a generic system for different applications to use to communicate with one another. .NET objects are exposed to remote processes, thus allowing interprocess communication. The applications can be located on the same computer, different computers on the same network, or even computers across separate networks.
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
| |||
| Hi mani, Dot net remoting has some relation with Web services... With the advent of .NET and the .NET Framework, Microsoft introduced a set of new technologies in the form of Web services and .NET remoting. .NET remoting and ASP.NET Web services are powerful technologies that provide a suitable framework for developing distributed applications. It is important to understand how both technologies work and then choose the one that is right for your application. The Web services technology enables cross-platform integration by using HTTP, XML and SOAP for communication thereby enabling true business-to-business application integrations across firewalls. Because Web services rely on industry standards to expose application functionality on the Internet, they are independent of programming language, platform and device. Remoting is .a technology that allows programs and software components to interact across application domains, processes, and machine boundaries. This enables your applications to take advantage of remote resources in a networked environment. Both Web services and remoting support developing distributed applications and application integration, but you need to consider how they differ before choosing one implementation over the other. hope u got some idea about webservice and dot net relations....
__________________ Krishnakumar.S Beware of Everything -that is un true; stick to the Truth shall succeed slowly but steadily |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| .NET Remoting | S.Vinothkumar | C# Programming | 14 | 10-04-2007 07:41 AM |
| security measures for .NET Remoting | Arun | ASP and ASP.NET Programming | 1 | 08-18-2007 12:15 AM |
| What are the consideration in deciding to use .NET Remoting or ASP.NET Web Services | Arun | ASP and ASP.NET Programming | 1 | 08-09-2007 07:56 AM |
| How can we configure a .NET Remoting object via XML file? | mobilegeek | C# Programming | 1 | 07-24-2007 06:46 AM |
| Flash Remoting | nssukumar | Flash Actionscript Programming | 3 | 03-20-2007 05:28 AM |