You are developing a client application that consumes a Windows Communication Foundation (WCF) service. The operation contract is as follows. [OperationContract] [FaultContract(typeof(SalesFault))] string GetSales(string saleId);() The service configuration file contains the following line in the serviceBehaviors section. A divide-by-zero exception is not being handled by the service. You need to ensure that the exception is caught in the client application. Which type of exception should the client catch?()A、TimeoutExceptionB、FaultExceptionC、DivideByZeroExceptionD、FaultExceptionSalesFault

You are developing a client application that consumes a Windows Communication Foundation (WCF) service. The operation contract is as follows. [OperationContract] [FaultContract(typeof(SalesFault))] string GetSales(string saleId);() The service configuration file contains the following line in the serviceBehaviors section. A divide-by-zero exception is not being handled by the service. You need to ensure that the exception is caught in the client application. Which type of exception should the client catch?()

  • A、TimeoutException
  • B、FaultException
  • C、DivideByZeroException
  • D、FaultException<SalesFault>

相关考题:

You are developing a Windows Communication Foundation (WCF) service.You enable message logging, trace listeners, activity propagation, and tracing on the trace sources.You have the following code segment in the client application. (Line numbers are included for reference only.)01 Guid multiCallActivityId = Guid.NewGuid();02 TraceSource ts = new TraceSource(Multicall);03 Trace.CorrelationManager.ActivityId = multiCallActivityId;04You encounter errors when your client application consumes the service.You need to ensure that your client application can correlate tracing information with the service.Which code segment should you add at line 04?()A.B.C.D.

You are developing a Windows Communication Foundation (WCF) service. Client applications require reliable sessions to access the service.Users report that they receive ServerTooBusyException errors when their client application tries to establish a session. You need to ensure that the service can handle a minimum of 30 client connection requests.Which ReliableSessionBindingElement property should you configure?()A. MaxRetryCountB. MaxTransferWindowSizeC. MaxPendingChannelsD. InactivityTimeout

You are developing a client application that consumes a Windows Communication Foundation (WCF) service.The operation contract is as follows.[OperationContract][FaultContract(typeof(SalesFault))]string GetSales(string saleId);()The service configuration file contains the following line in the serviceBehaviors section.A divide-by-zero exception is not being handled by the service.You need to ensure that the exception is caught in the client application.Which type of exception should the client catch?()A. TimeoutExceptionB. FaultExceptionC. DivideByZeroExceptionD. FaultExceptionSalesFault

Your company uses Microsoft Application Virtualization (App - V). Your environment includes multiple client computer configurations, as shown in the following table.You need to deploy a 32 - bit application to all client computers.Which reference computer configuration should you use?()A.Config1 with App - V Sequencer 4.5 32 - bitB.Config2 with App - V Sequencer 4.6 64 - bitC.Config3 with App - V Sequencer 4.6 32 - bitD.Config4 with App - V Sequencer 4.6 64 - bit

A Windows Communication Foundation (WCF) service has a callback contract. You are developing a client application that will call this service. You must ensure that the client application can interact with the WCF service. What should you do? ()A、 On the OperationContractAttribute, set the AsyncPattern property value to True.B、 On the OperationContractAttribute, set the ReplyAction property value to the endpoint address of the client. For interactive and self-paced preparation of exam 70-513, try our practice exams. Practice exams also include self assessment and reporting features!C、 On the client, create a proxy derived from DuplexClientBase(Of TChannel).D、 On the client, use GetCallbackChannel(Of T).

Your company has 1,000 client computers that run Windows XP Professional x64.   You are planning to deploy Windows 7 Enterprise x64. The company uses an application that is incompatible with Windows 7 Enterprise x64.   You have the following requirements:   Provide all users with access to the application.   Deploy and manage the application by using a centralized solution.  You need to design a solution that meets the requirements.   What should you do?()A、 Install the application on all client computers by using Group Policy,and then use the Compatibility tab.B、 Install the Microsoft Enterprise Desktop Virtualization(MED-V) v2 package on each client computer.C、 Install the Microsoft Application Virtualization(App-V) client on each client computer,and stream the application byusing App-V.D、 Install the Microsoft Application Virtualization(App-V) client on each client computer,and run the application in offline mode.

All servers in your environment run Windows Server 2008 R2. All client computers ru n Windows 7. Each client computer has at least 2 5 GB free disk space. You virtualize applications by using Microsoft Application Virtualization (App - V). The App - V client cache is set to 4096 MB. User profiles are virtualized and stored on a server. You ne ed to increase the size of the file system cache on a client computer to at least 10 GB. What should you do?()A、Use the AppVCacheSize tool to set the maximum cache size to 10240.B、Use the AppVCacheSize tool to set the minimum free disk space threshold to 1 0240.C、Set the HKLM / SOFTWARE / Microsoft / SoftGrid / 4.5 / Client /AppFS/ State registry key to 10240.D、Set the HKLM / SOFTWARE / Microsoft / SoftGrid / 4.5 / Client /AppFS/ FileSize registry key to 10240.

You are developing a Windows Communication Foundation (WCF) client application. The client application contains the following code. [ServiceContract] public interface ISocialStatus { [OperationContract] [WebInvoke(UriTemplate = "/statuses/update.xml?status-{text}")] void UpdateStatus(string text); } public class SocialClient : ClientBase, ISocialStatus { ... } The configuration file contains the following lines. binding="webHttpBinding" contract="SocialApp.ISocialStatus" bindingConfiguration="BindingConfig" / You need to ensure that the service is consumed. Which code segment should you use?()A、var client = new SocialClient("SocialClient"); client.Endpoint.Behaviors.Add(new WebHttpBehavior());B、var client = new SocialClient("SocialClient"); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehovior());C、var client = new SocialClient("POST"); client.Endpoint.Behaviors.Add(new WebHttpBehovior());D、var client = new SocialClient("POST"); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehavior());

You need to recommend a solution for deploying App2.What should you recommend?()A、Deploy a new App-V package that contains App2.Stream the package to the client computers of the 10 users.B、Deploy a new MED-V workspace that contains App2. Deploy the workspace to the client computers of  the 10 users.C、On an RD Session Host server in the branch office, install and publish App2 by using RemoteApp. deploy the RemoteApp program as an MSI file.D、On an RD Virtualization Host server in the branch office,create 10 Windows 7 VMs that contain App2. configure the new VMs as personal virtual desktops.

You are developing a client application that consumes a Windows Communication Foundation (WCF) service. You use the svcutil.exe utility to create a proxy for the service. You use the svcutil.exe switches that generate asynchronous calls. GetFlight is a service operation that takes no parameters and returns a string. The GetFlightCallback method must be called when the service operation returns.You create an instance of the client proxy with the following code:var client = new TranvelServiceClient( );You need to ensure that a callback is received when the GetFlight operation is called asynchronously. Which code segment should you use?()A、client.BeginGetFlight(GetFlightCallback, null); client.GetFlight();B、client.GetFlight(); client.BeginGetFlight(GetFlightCallback, null);C、client.GetFlightCompleted += new EventHandler(GetFlightCallback); client.GetFlightAsync();D、IAsyncResult asyncResult = client.BeginGetFlight(GetFlightCallback, client); client.EndGetFlight(asyncResult);

You work as an application developer at Certkiller .com. You are developing a collection class named ClientCollection, which is to be used for storing the names of Certkiller .com’s clients that are situated in various geographical areas. These client names are represented by the Client class. You are planning to create a method named SortClients in the ClientCollection class to arrange Client objects in ascending order. You need to ensure that the appropriate interface is implemented by the Client class to allow sorting.What interface should be used?()A、 IDictionaryB、 IComparableC、 IComparerD、 IEqualityComparer

You are planning to upgrade the operating systems of the client computers in the financedepartment.   You need to recommend a solution for App1 that meets the company’s technical requirements. What should you include in the recommendation?()A、Microsoft Application Virtualization (App-V)B、RemoteApp and Desktop ConnectionC、RD GatewayD、Windows XP Mode

You deploy applications by using the Microsoft Application Virtualization (App-V) Full Infrastructure Model You need to recommend a solution to manage the App-V Desktop Client settings. What should you include in the recommendation?()A、The App-V System Deployment SuperFlowB、the App-V Dynamic Suite Composition ToolC、the App-V SequencerD、the App-V Client ADM Template

Client computers on your network run either Windows Vista or Windows 7.  You plan to use Microsoft Application Virtualization (App-V) 4.5 with SP1 as an application virtualization platform. You need to virtualize applications by using mount point installations (MNT).  What should you do?()A、Configure the App-V Sequencer to have two partitionsB、Configure the App-V Sequencer on a Windows 7 client computerC、Configure virtualized applications to check for updates during installationD、On the reference computer, install all software that typically runs on client computers

A Windows Communication Foundation (WCF) service has a callback contract. You are developing a client application that will call this service.You must ensure that the client application can interact with the WCF service. What should you do?()A、On the OperationContractAttribute, set the AsyncPattern property value to true.B、On the OperationContractAttribute, set the ReplyAction property value to the endpoint address of the client.C、On the client, create a proxy derived from DuplexClientBaseTChannel .D、On the client, use GetCallbackChannelT .

单选题You deploy applications by using the Microsoft Application Virtualization (App-V) Full Infrastructure Model You need to recommend a solution to manage the App-V Desktop Client settings. What should you include in the recommendation?()AThe App-V System Deployment SuperFlowBthe App-V Dynamic Suite Composition ToolCthe App-V SequencerDthe App-V Client ADM Template

单选题You have an Exchange Server 2010 organization.You install a new Client Access server in the organization.You need to verify whether users can access the new Client Access server by using Outlook Web App. What should you do?()AFrom the Exchange Best Practices Analyzer, run a baseline scan.BFrom the Exchange Management Shell, run the Test-OwaConnectivity cmdlet.CFrom the Exchange Management Console (EMC), examine the properties of the default Outlook Web App mailbox policy.DFrom the Internet Information Services (IIS) Manager, view the session state settings for the Outlook Web Access virtual directory.

单选题You work as an application developer at Certkiller .com. You are developing a collection class named ClientCollection, which is to be used for storing the names of Certkiller .com’s clients that are situated in various geographical areas. These client names are represented by the Client class. You are planning to create a method named SortClients in the ClientCollection class to arrange Client objects in ascending order. You need to ensure that the appropriate interface is implemented by the Client class to allow sorting.What interface should be used?()A IDictionaryB IComparableC IComparerD IEqualityComparer

单选题You are developing a Windows Communication Foundation (WCF) service. Client applications require reliable sessions to access the service.Users report that they receive ServerTooBusyException errors when their client application tries to establish a session. You need to ensure that the service can handle a minimum of 30 client connection requests. Which ReliableSessionBindingElement property should you configure?()AMaxRetryCountBMaxTransferWindowSizeCMaxPendingChannelsDInactivityTimeout

单选题You are planning to upgrade the client computers of the users in the sales department to Windows 7. You need to recommend an upgrade solution to ensure that the client computers can run App2. What should you include in the recommendation?()AInternet Explorer Administration Kit (IEAK)BMicrosoft Application Compatibility Toolkit (ACT)CMicrosoft Application Virtualization (App-V)DMicrosoft Enterprise Desktop Virtualization (MED-V)

单选题A Windows Communication Foundation (WCF) service has a callback contract. You are developing a client application that will call this service. You must ensure that the client application can interact with the WCF service. What should you do? ()A On the OperationContractAttribute, set the AsyncPattern property value to True.B On the OperationContractAttribute, set the ReplyAction property value to the endpoint address of the client. For interactive and self-paced preparation of exam 70-513, try our practice exams. Practice exams also include self assessment and reporting features!C On the client, create a proxy derived from DuplexClientBase(Of TChannel).D On the client, use GetCallbackChannel(Of T).

单选题Your company has an Active Directory Domain Services (AD DS) domain. You have a main office and a branch office that are connected by a slow WAN link. All servers are located in the main office. You virtualize an application by using Microsoft Application Virtualization (App - V) 4.5. The available bandwidth is not sufficient for branch office users to run the virtualized application. You need to ensure that branch office users can run the virtualized application by using the Microsoft Application Virtualization Desktop Client. What should you do?()AOn each App - V server in the main office, upgrade the App - V desktop clients to 4.6.BOn each client computer in the branch office, upgrade the App - V desktop clients to 4.6.COn each client computer in the branch office, install the application by using Windows Installer (.msi) files created by the App - V Sequencer.DIn the Micr osoft System Center Application Virtualization Management Server, configure an Application Virtualization file server for the main office.

单选题You are developing a client application that consumes a Windows Communication Foundation (WCF) service. You use the svcutil.exe utility to create a proxy for the service. You use the svcutil.exe switches that generate asynchronous calls. GetFlight is a service operation that takes no parameters and returns a string. The GetFlightCallback method must be called when the service operation returns.You create an instance of the client proxy with the following code:var client = new TranvelServiceClient( );You need to ensure that a callback is received when the GetFlight operation is called asynchronously. Which code segment should you use?()Aclient.BeginGetFlight(GetFlightCallback, null); client.GetFlight();Bclient.GetFlight(); client.BeginGetFlight(GetFlightCallback, null);Cclient.GetFlightCompleted += new EventHandler(GetFlightCallback); client.GetFlightAsync();DIAsyncResult asyncResult = client.BeginGetFlight(GetFlightCallback, client); client.EndGetFlight(asyncResult);

单选题Your company has 1,000 client computers that run Windows XP Professional x64.   You are planning to deploy Windows 7 Enterprise x64. The company uses an application that is incompatible with Windows 7 Enterprise x64.   You have the following requirements:   Provide all users with access to the application.   Deploy and manage the application by using a centralized solution.  You need to design a solution that meets the requirements.   What should you do?()A Install the application on all client computers by using Group Policy,and then use the Compatibility tab.B Install the Microsoft Enterprise Desktop Virtualization(MED-V) v2 package on each client computer.C Install the Microsoft Application Virtualization(App-V) client on each client computer,and stream the application byusing App-V.D Install the Microsoft Application Virtualization(App-V) client on each client computer,and run the application in offline mode.

单选题You are developing a client application that consumes a Windows Communication Foundation (WCF) service. The operation contract is as follows. [OperationContract] [FaultContract(typeof(SalesFault))] string GetSales(string saleId);() The service configuration file contains the following line in the serviceBehaviors section. A divide-by-zero exception is not being handled by the service. You need to ensure that the exception is caught in the client application. Which type of exception should the client catch?()ATimeoutExceptionBFaultExceptionCDivideByZeroExceptionDFaultExceptionSalesFault

单选题A Windows Communication Foundation (WCF) service has a callback contract. You are developing a client application that will call this service.You must ensure that the client application can interact with the WCF service. What should you do?()AOn the OperationContractAttribute, set the AsyncPattern property value to true.BOn the OperationContractAttribute, set the ReplyAction property value to the endpoint address of the client.COn the client, create a proxy derived from DuplexClientBaseTChannel .DOn the client, use GetCallbackChannelT .

单选题Your company has an Active Directory Domain Services (AD DS) domain. You have a main office and a branch office that are connected by a slow WAN link. All servers are located in the main office. You virtualize an application by using Microsoft Application Virtualization (App-V) 4.5. The available bandwidth is not sufficient for branch office users to run the virtualized application. You need to ensure that branch office users can run the virtualized application by using the Microsoft Application Virtualization Desktop Client. What should you do?()AOn each App-V server in the main office, upgrade the App-V desktop clients to 4.6.BOn each client computer in the branch office, upgrade the App-V desktop clients to 4.6.COn each client computer in the branch office, install the application by using Windows Installer (.msi) files created by the App-V Sequencer.DIn the Microsoft System Center Application Virtualization Management Server, configure an Application Virtualization file server for the main office.

单选题Client computers on your network run either Windows Vista or Windows 7. You plan to use Microsoft Application Virtualization (App-V) 4.5 with SP1 as an application virtualization platform. You need to virtualize applications by using mount point installations (MNT).   What should you do?()AConfigure the App-V Sequencer to have two partitionsBConfigure the App-V Sequencer on a Windows 7 client computerCConfigure virtualized applications to check for updates during installation. A Composite Solution With Just One Click - Certification Guaranteed 86 Microsoft 70-693 ExamDOn the reference computer, install all software that typically runs on client computers