CertInside 70-529
Http://www.CertInside.com CertInside Help you pass any IT Exams
Microsoft 70-529
Microsoft.NET Framework 2.0-Distributed Application
Development
Q&A v 5.44
http://www.CertInside.com/
CertInside,The Most Realistic Practice Exams!
CertInside 70-529
Http://www.CertInside.com CertInside Help you pass any IT Exams
1. You create a .NET Framework remoting application that provides stock information to customers. The server
component raises an event on the client computer when certain conditions are met. You need to ensure the server raises
exactly one event for each client application that is registered for the event. What should you do?
A. Configure the server class as a Singleton Server Activated Object (SAO) and check for duplicate client delegate
methods before raising the event.
B. Configure the server class as a Client Activated Object (CAO) and override the CreateObjRef method to check for
duplicate client delegate methods before raising the event.
C. Configure the server class as a SingleCall Server Activated Object (SAO) and check for duplicate client delegate
methods before raising the event.
D. Configure the server class as a Client Activated Object (CAO) and check for duplicate client delegate methods before
raising the event.
Answer: A
2. You are converting an application to use .NET Framework remoting. The server portion of the application monitors
stock prices and contains a class named StockPriceServer, which is a Server Activated Object (SAO). The client
computer interacts with the server using a common assembly. When the server attempts to raise an event on the client
computer, the server throws the following exception.System.IO.FileNotFoundException.You discover that the event
delegate is not being called on the client computer. You need to ensure that the server application can raise the event on
the client computer. What should you do?
A. Ad