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 Client-activated object in remoting?
What is the Difference between CAO and SAO in Remoting.
How are the activation URLs different in case of SAO and CAO in .NET remoting?
How to directly call a native function exported from a dll?
Difference between web services & remoting?
What is the proxy of the server object in .net remoting?
write a example for remoting (code)
How to register a shared assembly ?
Are you aware of containment and Aggregation ?
What are the security issues if we send a query from the application?
What is the difference between authentication and authorization ?
7 Answers Digital GlobalSoft, Qatar University,
Can we configure a .net remoting object via xml file?