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 |
About .NET Remoting and types of remoting ?
What is the purpose of System.EnterpriseServices namespace ?
Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs?
Explain what is the relationship between a Process, Application Domain, and Application?
When do we use delegates in your remoting applications?
What do you know about .NET assemblies?
Define singlecall activation mode in .net remoting?
What is the Difference between CAO and SAO in Remoting.
write a example for remoting (code)
What are the difference between static assemblies and dynamic assemblies?
What is unmanaged code and will CLR handle this kind of code or not ?
What are the security measures exist for .net remoting in system.runtime.remoting?