Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Rated
Read 75,120 times

Contents

Related Categories

Introducing .NET Remoting - Introduction

David Talbot

Introduction

.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 an Object read in from the database. I've also included an alternate object that omits the database functionality in order to allow those that don't have a database available to still play with .NET remoting. Make sure you are using Visual Studio.NET Beta 2 when attempting this project.

David Talbot is an experienced Software Architect with a diverse background including creating network applicances, working with television set top boxes, building Billing/CRM systems, Web Portals and more. He has also provided technical guidance in different capacities on two C# books. David is currently finishing up work on a real estate analytics application in C# for Pathfinder Technologies and seeking additional contract or permenet work.

Comments

  • Posted by scotlandhoy on 06 Dec 2005


    forget that last post ...

    I found it in my code ... non-application test code I threw in on the quick ... cause the StackOverflow.

  • Posted by scotlandhoy on 05 Dec 2005


    Hey, did you ever find out what your problem was?

    I got the same error on a completely different project.

    Same M.O. ...

    ... unhandled exception of type 'System.StackOverflowException' occur...

  • Problem running ResumeClient

    Posted by JLChew on 16 Aug 2005

    I encountered the following error message when running the ResumeClient.exe:

    "[red] An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll[/red] "

    at the followi...

  • Great Tutorial!!

    Posted by priyajay on 25 May 2004

    I was looking for a Remoting Sample for beginners for weeks and this was the first that made absolute sense to me. If you are a person with an average IQ like myself, and want to understand the basics...

  • Excellent

    Posted by NutSoft on 30 Jan 2004

    I've been looking for a way to implement a cross application boundary component in C# .NET for most of this week. This looks like it will suit my needs perfectly. Thanks.