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 Client-activated object in remoting?

0 Answers   DELL,


What is the Difference between CAO and SAO in Remoting.

0 Answers  


How are the activation URLs different in case of SAO and CAO in .NET remoting?

0 Answers  


How to directly call a native function exported from a dll?

0 Answers  


Difference between web services & remoting?

0 Answers  


What is the proxy of the server object in .net remoting?

0 Answers  


write a example for remoting (code)

2 Answers   Mind Tree,


How to register a shared assembly ?

1 Answers   Digital GlobalSoft,


Are you aware of containment and Aggregation ?

0 Answers   DELL,


What are the security issues if we send a query from the application?

2 Answers   Microsoft, Timken,


What is the difference between authentication and authorization ?

7 Answers   Digital GlobalSoft, Qatar University,


Can we configure a .net remoting object via xml file?

0 Answers  


Categories