Answer Posted / arunkumar thimma
public class CommonClass : MarshalByRefObject
{
public string FirstName;
public string LastName;
public string GetWelcomeString()
{
Console.WriteLine("Welcome " + FirstName + " " + LastName);
return "Welcome " + FirstName + " " + LastName;
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
When do we use delegates in your remoting applications?
What are static assemblies and dynamic assemblies?
Explain marshalling and its types in .net remoting
How can you configure a .net remoting object via xml file?
Which one is better WebService and Remoting ?
What are the different types of channels used by .net remoting and which is the best one?
Define remotable objects in .net remoting?
what are the requirements to enable remote components to interact each other?
Define the lease of the object?
Is it a good design practice to distribute the implementation to remoting client?
What is a formatter in .net remoting?
How are the activation URLs different in case of SAO and CAO in .NET remoting?
What is the Difference between CAO and SAO in Remoting.
Can you pass SOAP messages through remoting?
How to decide which to use .net remoting or asp.net web services?