write a example for remoting (code)
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / arunkumar thimma
static void Main(string[] args)
{
TcpChannel tcpChannel = new TcpChannel(8084);
ChannelServices.RegisterChannel(tcpChannel);
RemotingConfiguration.RegisterWellKnownServiceType(typeof(ClassLibrary1.CommonClass),
"testRemoting", WellKnownObjectMode.Singleton);
Console.WriteLine("Server is ready");
Console.ReadLine();
}
Is This Answer Correct ? | 0 Yes | 0 No |
Which namespace is used for encryption ?
About Iunknown interface Queue ,its methods Query Interface Addref,Release and Explain each ?
Explain the differences between marshal by value and marshal by reference?
Can you have two files with the same file name in GAC?
Write a example code for remoting?
What are various types of assemblies ?
write a example for remoting (code)
What are the information required to configure remote objects?
Define a process?
What is the difference beween the registerwellknownservicetype() and registerwellknownclienttype()?
What is the difference between .Net Remoting and Web Services ?
Define remotable objects in .net remoting?