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
Can you pass SOAP messages through remoting?
Explain marshalling and its types in .net remoting
Define remotable objects in .net remoting?
Explain serialization formatters in .net remoting
Explain the types of .net remoting?
Garbage collector?s functionality on unmanaged code ?
What do you mean by windows authentication?
What are the information required to configure remote objects?
Explain how can you automatically generate interface for the remotable object in .net with microsoft tools?
What are static assemblies and dynamic assemblies?
About Iunknown interface Queue ,its methods Query Interface Addref,Release and Explain each ?
What are the security features in .net remoting?
What are the types of remoting?
Define singleton activation mode in .net remoting?
What is the difference between the RegisterWellknownServiceType(), RegisterWellknownClientType(), RegisterActivatedServiceType() and RegisterActivatedClientType() in .net?