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

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

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you explain remoting?

598


Define singlecall activation mode in .net remoting?

520


Can you pass SOAP messages through remoting?

572


What are the security features in .net remoting?

545


What are the types of remoting?

543






How are the activation URLs different in case of SAO and CAO in .NET remoting?

2093


What is unmanaged code?

530


Define a process?

550


When should we choose .net remoting over .net web services?

541


Explain threading types?

649


Name the distributed systems available apart from .net remoting?

563


Explain how to perform remoting?

524


Explain how does assembly versioning in .net prevent dll hell?

549


Explain when we use web service and when we use remoting?

523


What is asynchronous programming?

569