How can objects in two diff. App Doimains communicate with each other ?
Answer / vishwadeep tyagi
.Net framework provides various ways to communicate with objects in different app domains.
First is XML Web Service on internet, its good method because it is built using HTTP protocol and SOAP formatting.
If the performance is the main concern then go for second option which is .Net remoting because it gives you the option of using binary encoding and the default TcpChannel, which offers the best interprocess communication performance.
Is This Answer Correct ? | 0 Yes | 0 No |
What distributed process frameworks outside .NET do you know?
What is an assembly and what does manifest consists ?
Can you configure a .NET Remoting object via XML file?
What are the ways to configure remoting objects before client can use them?
Explain Singleton design pattern of Remoting?
Define proxy in .net remoting?
I am developing a project.Title is "Remote Demonstator".Using asp.net and C# Abstact: While administrator moving mouse and clicking on any link in the webpage that action will be performed in Server machine as well as in client machine.The client initially have to log-in and make a phone call to the admin. This is my project. How can i get this? I can create a website but this concept i have to implement in my website.How can i achive this? How to get client system control and how my mouse movings can be visible to client? I request all to please give me a basic idea or some hint. Advance Thanks.
Can you configure a .NET Remoting object via XML file?
1 Answers Tavant Technologies,
Explain the difference between the registerwellknownservicetype(), registerwellknownclienttype(), registeractivatedservicetype() and registeractivatedclienttype() in .net?
What do mean by remotable objects in .net remoting?
What are static assemblies and dynamic assemblies. Differences between them?
Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs? In what way it is best?