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
Difference between .net remoting versus distributed com?
Which Namespaces is used to achieve the Remoting?
what is Client-activated object in remoting?
Explain marshalling and its types in .net remoting
Name the distributed systems available apart from .net remoting?
What is fundamental of published or precreated objects in remoting?
What are different types of assemblies?
What are the channels in .net remoting?
Types of compatabilities and explain them ?
Define singlecall activation mode in .net remoting?
Define the lease of the object?
Explain the hierarchial description of remoting?
Which one is better WebService and Remoting ?
How do you directly call a native function exported from a DLL?
What are dynamic assemblies?