Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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 the Difference between CAO and SAO in Remoting.

0 Answers  


Types of compatabilities and explain them ?

0 Answers   DELL,


What?s a Windows process?

1 Answers  


What technology enables out-of-proc communication in .NET ?

1 Answers  


What is unmanaged code and will CLR handle this kind of code or not ?

1 Answers   DELL,


How to register a shared assembly ?

1 Answers   Digital GlobalSoft,


What are static assemblies and dynamic assemlies. Differences between them ?

2 Answers   TCS,


What is the difference between .Net Remoting and Web Services ?

1 Answers  


What do mean by remotable objects in .net remoting?

0 Answers  


What are the security measures exist for .net remoting in system.runtime.remoting?

0 Answers  


What is an assembly and what does manifest consists ?

3 Answers   TCS,


Define remotable objects in .net remoting?

0 Answers  


Categories