vote up 0 vote down star
1

Hi.. i am studying .Net Remoting

i read from MSDN. but in one step i am facing some confusion..

three steps are required for remoting purpose.

1 - RemoteObject

2 - Host

3 - Client

creating RemoteObject and Host is fine. i understand all the things. it uses Configuration File for both Host and Client Configuration. in Client it uses the following code

public static void Main(){
      RemotingConfiguration.Configure("Client.exe.config");
      RemotableType remoteObject = new RemotableType();
      Console.WriteLine(remoteObject.SayHello());
   }

here it is creating Object of RemotableType with new operator. where as this Client application has reference of RemotableType.dll..

when this dll is available locally then what is the purpose of calling SayHello() remotely.??

i ran this client without running server and it still displays me Hello World message.

is this creation of remoteObject with new operator is valid here?????

where as the other method of getting remoteobject is

RObject remoteObject = (RObject)Activator.GetObject(typeof(RObject), "tcp://localhost:9999/RObject");
flag

I'm not a remoting expect... but you should note that remoting is largely replaced by WCF now; see the bold text at the top of this MSDN page: msdn.microsoft.com/en-us/library/… – Marc Gravell Jun 9 at 9:25
<q>This topic is specific to a legacy technology that is retained for backward compatibility with existing applications and is not recommended for new development. Distributed applications should now be developed using the Windows Communication Foundation (WCF).</q> – Marc Gravell Jun 9 at 9:25
what if i intended to do work in .Net 2.0 WCF is for .Net 3.0 + – Mohsan Jun 9 at 9:29
Then I'd use WSE3 ;-p Remoting can be painful, and doesn't lead to good SOA implementations, IMO. – Marc Gravell Jun 9 at 10:11
I'd avoid WSE at all costs. I was just about to remark that I'd love to get the same sort of blurb that's at the top of these Remoting pages, but for all the WSE pages. Only I think the blurb should be in red for WSE. If you're stuck in .NET 2.0, then upgrade. There's no reason not to, unless your .NET 2.0 applications will fail if run in .NET 2.0 SP2, which is what .NET 3.5 SP1 provides to .NET 2.0 applications. – John Saunders Jun 9 at 11:15

2 Answers

vote up 0 vote down check

Usually you will create two DLLs: One that contains an interface definitions for your remotable object and another one that contains the implementation of the interface definitions.

You will then add the interface definition DLL to the client, while the server needs both DLLs. The client will then create instances of the class using the Activator.GetObject(...) call.

If you reference the implementation DLL from your client - as you pointed out - you do not have any advantages from the client/server implementation.

link|flag
i solved this problem by creating interfacec. and by doing this client only have Reference to that interface not the complete implementation. which is more secure. – Mohsan Jun 11 at 5:36
vote up 0 vote down

Calling new RemotableType() is simply creating a local instance of RemotableType on the client. Calling any methods on it will get called on this instance.

Using Activator.GetObject() is creating a TransparentProxy in the client to the instance of RemotableType that was published in the host application. Calling any methods on this will make a remote call to the host application and will execute there. If your implementaion of SayHello was to return the name of the entry assembly (using Assembly.GetEntryAssembly()), it would return Host.exe even though you are running in the client.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.