Answer Posted / 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 |
Post New Answer View All Answers
Will clr handle unmanaged code or not?
Difference between web services & remoting?
Write a example code for remoting?
Can you explain remoting?
What are static assemblies?
What is objref object in remoting?
How do you implement distributed applications in .net?
What are the information required to configure remote objects?
What is a formatter in .net remoting?
Explain when we use web service and when we use remoting?
What are the remotable objects in .net remoting?
Which one is better WebService and Remoting ?
Name the distributed systems available apart from .net remoting?
What are the situations you will use singleton architecture in remoting ?
What is unboxing?