write a example for remoting (code)

Answers were Sorted based on User's Feedback



write a example for remoting (code)..

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

write a example for remoting (code)..

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

Post New Answer

More Dot Net Remoting Interview Questions

What is boxing and unboxing ?

4 Answers   Amdocs, BirlaSoft, TCS,


Explain threading types?

0 Answers  


Define delegates and events?

0 Answers  


What is the difference beween the registeractivatedservicetype() and registeractivatedclienttype()?

0 Answers  


How can you create a strong name for a .NET assembly?

2 Answers  






What does manifest consists?

0 Answers  


What is assembly ?

4 Answers   DELL, TCS,


What are the information required to configure remote objects?

0 Answers  


Explain marshalling and its types in .net remoting

0 Answers  


Difference between remoting and web service ?

1 Answers   Digital GlobalSoft,


What are static assemblies and dynamic assemblies?

0 Answers  


what are the various type of channels used by .Net remoting and which is the best one?

1 Answers  


Categories