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 |
What is the difference between .Net Remoting and Web Services ?
Will clr handle unmanaged code or not?
Explain the difference between the registerwellknownservicetype(), registerwellknownclienttype(), registeractivatedservicetype() and registeractivatedclienttype() in .net?
What is assembly ?
What are static assemblies and dynamic assemlies. Differences between them ?
How do you directly call a native function exported from a DLL?
What technology enables out-of-proc communication in .NET ?
Where are shared assemblies stored?
How can you tell the application to look for assemblies at the locations other than its own install?
what is sitemap
About Iunknown interface Queue ,its methods Query Interface Addref,Release and Explain each ?
What is the difference between private and shared assembly?