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 |
Explain serialization formatters in .net remoting
How can you configure a .net remoting object via xml file?
Explain when we use web service and when we use remoting?
Explain how to perform remoting?
What are various types of assemblies ?
What is asynchronous programming?
About sn.exe ?
What is unmanaged code and will CLR handle this kind of code or not ?
What are possible implementations of distributed applications in .NET?
What are the security features in .net remoting?
What are the advantage of remoting over web services?
What?s SingleCall activation mode used for?