What's the difference btw the following methods in .NET
remoting?

RegisterWellknownServiceType()
RegisterWellknownClientType()
RegisterActivatedServiceType()
RegisterActivatedClientType()



What's the difference btw the following methods in .NET remoting? RegisterWellknownService..

Answer / anil kumar mudajja

RegisterWellknownServiceType():
Method used to define and configure a remotable Object that
needs to be Activated on server side. This takes 3
parameter as follows:-
RegisterWellKnownServiceType( typeof( <Class/Object
Name> ), <"SomeURI">,
WellKnownObjectMode.Singleton/SingleCall );

RegisterWellknownClientType():
This method has to be used on the client module to
comunicate with serve-side activated remote object. Ex:
RegisterWellKnownClientType( typeof( <Class/Object Name> ),
<"Server Remotable Object URL"> );


RegisterActivatedServiceType():
RegisterActivatedClientType():
Similarly, the above two methods are used to define
remotable object type as client activated.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Dot Net Remoting Interview Questions

Explain the Flow of remoting?

0 Answers  


What are the types of remoting?

0 Answers  


What is an assembly and what does manifest consists ?

3 Answers   TCS,


What are static assemblies and dynamic assemblies?

0 Answers  


How do you directly call a native function exported from a DLL?

2 Answers  






What?s a Windows process?

1 Answers  


How do you implement distributed applications in .net?

0 Answers  


What is the proxy of the server object in .net remoting?

0 Answers  


What is asynchronous programming?

0 Answers  


What are the types of remotable objects?

0 Answers  


What are the security measures exist for .net remoting in system.runtime.remoting?

0 Answers  


What?s Singleton activation mode?

3 Answers  


Categories