How can objects in two diff. App Doimains communicate with each other ?
Answer Posted / 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 |
Post New Answer View All Answers
What is fundamental of published or precreated objects in remoting?
What are dynamic assemblies?
What are the steps to publish an object outside the service domain
Explain the difference between the registerwellknownservicetype(), registerwellknownclienttype(), registeractivatedservicetype() and registeractivatedclienttype() in .net?
Can you pass SOAP messages through remoting?
Define proxy in .net remoting?
Define singlecall activation mode in .net remoting?
What is unboxing?
What is the difference between the RegisterWellknownServiceType(), RegisterWellknownClientType(), RegisterActivatedServiceType() and RegisterActivatedClientType() in .net?
What is Remoting?
Explain marshalling and its types in .net remoting
What are the advantage of remoting over web services?
What do you mean by passport authentication?
Can you explain remoting?
How do you directly call a native function exported from a DLL?