We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Rated
Read 76,567 times

Contents

Related Categories

Introducing .NET Remoting - The remote client

David Talbot

The remote client

The ResumeClinet object is our test user of our newly created ResumeSuperServer remote object. To start this project go to File->New->Project. Choose a Console Application as the application type and enter "ResumeClient" as the project's name. As in step 2, make sure you add a referance to our shared DLL created in step 1 and the System.Runtime.Remoting DLL.

The code below has two lines of particular interest to .NET remoting. The first line creates a TCP client channel. This channel is not bound to a port. The seond line actually gets a referance to our remote ResumeLoader object. The Activator.GetObject method returns a type of Object that we can then cast into our ResumeLoader. The parameters we pass in are extremely similar to what we passed to the RemotingConfiguration object on the server project. The first parameter is the Type of the object, the second is the URI of our remote object.

	ChannelServices.RegisterChannel(new TcpClientChannel());
	ResumeLoader loader = (ResumeLoader)Activator.GetObject(
		typeof(ResumeLoader), "tcp://localhost:9932/ResumeLoader");

The complete code for our ResumeClient is below.

using System;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
using DotNetRemoteTest;

namespace ResumeClient
{

public class ResumeClient
{

public static void Main(string[] args)
{
	ChannelServices.RegisterChannel(new TcpClientChannel());
	ResumeLoader loader = (ResumeLoader)Activator.GetObject(
		typeof(ResumeServer), "tcp://localhost:9932/ResumeLoader");

	if(loader==null)
	{ Console.WriteLine("Unable to get remote referance"); }
	else
	{
		Resume resume = loader.GetResumeByUserID(1);
		Console.WriteLine("ResumeID:"+ resume.ResumeID);
		Console.WriteLine("UserID:"+ resume.UserID);
		Console.WriteLine("Title:"+ resume.Title);
		Console.WriteLine("Body:"+ resume.Body);
	}
	Console.ReadLine();//Keep the window from closing before we can read the result.
}//END OF MAIN METHOD
}//END OF ResumeClient Object
}//END OF ResumeClientNamespace

Compile this project and note the location of the executable.

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.