| .NET Remoting ( A Simple Approach) |
| C# Help |
| .NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by SOAP based WebServices. .NET Remoting is easier to use than Java's RMI, but definately more difficult than creating a WebService. In this article, we will create a remote object that will return rows from a database table. For the sake of simplicity i have used the NorthWind database that is packed with the installation of the Microsoft SQL Server. |
|
| .NET Remoting - The Interface Approach |
| C# Help |
| In this article, we will create a remote object, and access this object using an interface. This method is important when creating a physical separation between business tier and consumer code. In traditional Remoting approaches, to access a remote object, you need a copy of that object on the client machine. With this approach, the metadata is split into a separate library that can be copied to the client machine. |
|
| A Simple Chat Application Using .NET Remoting |
| The Code Project |
| The application is a simple chat tool. Anyone who connects to the chat server receives all chat communication between the connected users. The application is deliberately kept simple to clarify .NET Remoting. This application also demonstrates the event and delegate usage in an application that uses .NET Remoting. |
|
| Format for .NET Remoting Configuration Files |
| MSDN |
| All remote objects have to be registered with the Remoting Framework before clients can access them. During this registration process, the Framework is provided with all the information required to activate and manage the lifetime of the object. The most important pieces of information required for registration is the type of the object, the URI where it will be deployed, the activation requirements for managing the object lifetime and the channels that can be used to connect to this object. |
|
| HOW TO: Create a remote server by using Visual C++ .NET |
| http://www.kbalertz.com/ |
| (818780) - This step-by-step article describes how to create a simple, remote server that another application can access. The application that accesses the server can be located on the same computer, on a different computer, or on a different network. The remote... |
|
| HOW TO: Create a Remote Server Using Microsoft Visual C# .NET (Q307445) |
| http://www.kbalertz.com/ |
| This article illustrates how to create a simple, remote server that another application can access. The application that accesses this server can be located on the same computer, on a different computer, or on a different network. The remot |
|
| HOW TO: Create a Remote Server Using Microsoft Visual C# .NET (Q307445) |
| Microsoft Support |
| This article illustrates how to create a simple, remote server that another application can access. The application that accesses this server can be located on the same computer, on a different computer, or on a different network. The remot |
|
| Introducing .NET Remoting |
| C# Help |
| .NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally,
.NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by
SOAP based WebServices. .NET Remoting is easier to use than Java's RMI, but definately more difficult than
creating a WebService. |
|
| Microsoft .NET Remoting: A Technical Overview |
| MSDN |
| Microsoft® .NET remoting provides a framework that allows objects to interact with one another across application domains. The framework provides a number of services, including activation and lifetime support, as well as communication channels responsible for transporting messages to and from remote applications. Formatters are used for encoding and decoding the messages before they are transported by the channel. |
|
| Publish And Subscribe |
| The Code Project |
| This tutorial will introduce the concepts of publishing and subscribing data over a network using the C# programming language and will hopefully provide not only an understanding of how publish and subscribe applications work but should provide the reader with the tools needed to develop a publish and subscribe style application of their own. |
|
| Tie Into Remote Objects |
| .NET Magazine |
| One advance that's part of the .NET architecture is .NET Remoting—an object-oriented, extensible framework that enables distributed application development. You can use .NET Remoting and C# to your advantage in distributed apps, particularly in implementing design patterns. |
|
| Working With Events Over Remoting |
| DotNetJunkies |
| Subscribing to events of objects instantiated via remoting can be a tricky business. However, it is possible to build solid event publish/subscribe applications while using remoting simply by applying a few extra strategies then might not seem immediately obvious. Throughout the document, I will refer to the process that exposes the object for remoting as "server" and the process that instantiates an instance (local proxy) of a remote object as "client". However, all of these processes m |
|
| Writing a Messenger Application Using C# - Part 1 |
| C#Today |
| A messenger application provides users with a simple way to communicate instantly with each other. This article covers an approach to writing a sample realtime chat messenger application, much like the existing ones like MSN, Yahoo, AOL etc using C#. In this first part of this article, Saravana Kumar covers the data model, the core functionality assembly, the server, and how it is configured using .NET remoting to expose it to remote clients. The second part of the article will cover the client applications. |
|