This page was exported from New Lead2pass Dumps PDF Version Released For Free Downloading [ https://www.pass4suredumps.org ] Export date:Thu Mar 28 9:04:38 2024 / +0000 GMT ___________________________________________________ Title: [2016-New] Latest 70-513 Dumps PDF Free Download In GreatExam 100% 70-513 Pass Guaranteed (41-50) --------------------------------------------------- 2016 June Microsoft Official New Released 70-513 Q&As in GreatExam.com! 100% Free Download! 100% Pass Guaranteed! Microsoft 70-513 exam is very popular in Microsoft field, many Microsoft candidates choose this exam to add their credentials. There are many resource online to offering Microsoft 70-513 exam questions, through many good feedbacks, we conclude that GreatExam can help you pass your test easily with Microsoft 70-513 exam questions. Choose GreatExam to get your Microsoft 70-513 certification. Following questions and answers are all new published by Microsoft Official Exam Center: (The full version is in the end of the article!!!) QUESTION 41 You create a Windows Communication Foundation (WCF) service. You need to ensure that specific users can enable message logging for the service at runtime. In the configuration file for the service, what should you do? A.    Enable debug compilation. B.    Enable a shared XMLTraceListener object. C.    Enable the Windows Management Instrumentation (WMI) provider. D.    Enable message logging. Answer: A QUESTION 42 You are developing a Windows Communication Foundation (WCF) service that must be discoverable. You need to ensure that the ServiceHost instance supports multiple discovery versions. What should you do? A.    Specify a unique DiscoveryVersion parameter for each endpoint constructor. Use the same value for the Address property of each endpoint. B.    Use the endpoint constructor without the DiscoveryVersion parameter. Use a unique value for the Address property of each endpoint. C.    Specify a unique DiscoveryVersion parameter for each endpoint constructor. Use a unique value for the Address property of each endpoint. D.    Use the endpoint constructor without the DiscoveryVersion parameter. Use the same value for the Address property of each endpoint. Answer: C Explanation: We should specify version discovery for each endpoint constructor and use unique addresses for them, http://msdn.microsoft.com/en-us/library/dd456799.aspx QUESTION 43 A service implements the following contract. (Line numbers are included for reference only.) The service is implemented as follows. ContosoService uses NetMsmqBinding to listen for messages. The queue was set up to use transactions for adding and removing messages. You need to ensure that OperationOne and OperationTwo execute under the same transaction context when they are invoked in the same session. What should you do? A.    Insert the following attribute to OperationOne on lContosoService [TransactionFlow(TransactionFlowOption.Mandatory)] Insert the following attribute to OperationTwo on IContosoService [TransactionFlow(TransactionFlowOption.Mandatory)] B.    Insert the following attribute to OperationOne on ContosoService [OperationBehavior(TransactonScopeRequired=true, TransactionAutoComplete=false)] Insert the following attribute to OperationTwo on ContosoService. [OperationBehavior(TransactionScopeRequired=true, TransactionAutoComplete=true)] C.    Add the following XML segment to the application config file in the system serviceModel/bindings configuration section <netMsmqBinding> <binding name="contosoTx" durable="true" receiveContextEnabled="true" /> </netMsmqBinding> Then use the NetMsmqBinding named contosoTx to listen for messages from the clients. D.    Add the following XML segment to the application config file in the systemserviceModel/bindings configuration section. <customBinding> <binding name="contosoTx"> <transactionFlow /> <binaryMessageEncoding /> <msmqTransport durable="true" /> </binding> </customBinding> Then use the CustommiBinding named contosoTx to listen fcw messages from the clients. Answer: B QUESTION 44 A Windows Communication Foundation (WCF) service is required to log all authorization attempts to the Windows Event Log. You need to configure a behavior and apply it to the service to support this requirement. Which behavior should you configure and apply? A.    serviceAuthenticationManager B.    serviceAuthorization C.    serviceCredentials D.    serviceSecurityAudit Answer: D QUESTION 45 A Windows Communication Foundation (WCF) service is self-hosted in a console application. The service implements the IDataAccess contract, which is defined in the MyApplication namespace. The service is implemented in a class named DataAccessService which implements the IDataAccess interface and also is defined in the MyApplication namespace. The hosting code is as follows. (Line numbers are included for reference only.) 01 static void Main(string[] args) 02 { 03 ServiceHost host; 04 ... 05 host.Open(); 06 Console.ReadLine(); 07 host.Close(); 08 } You need to create a ServiceHost instance and assign it to the host variable. You also need to instantiate the service host. Which line of code should you insert at line 04? A.    host = new ServiceHost("MyApplication.DataAccessService"); B.    host = new ServiceHost("MyApplication.DataAccess"); C.    host = new ServiceHost(typeof(IDataAccess)); D.    host = new ServiceHost(typeof(DataAccessService)); Answer: D QUESTION 46 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. <behavior> <serviceDebug includeExceptionDetailInFaults="True"/> </behavior> 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> Answer: B QUESTION 47 You are creating a Windows Communication Foundation (WCF) service that uses claims-based authorization. The following code retrieves the correct claim set. var claims = ServiceSecurityContext.Current. AuthorizationContext.ClaimSets[0]; You need to validate that the requesting client application has included a valid DNS value in the claim. Which code segment should you use to retrieve the claim for validation? A.    claims.FindClaims(ClaimTypes.Dns, Rights.PossessProperty) .FirstOrDefault(); B.    claims.FindClaims(ClaimTypes.Dns, Rights.Identity) .FirstOrDefault(); C.    claims.ContainsClaim(Claim.CreateDnsClaim(ClaimTypes.Dns)); D.    claims.Equals(ClaimTypes.Dns); Answer: A Explanation: Claim Set can has only one Rights. Identity claim. It contains user identity information. All additional data, like DNS, stored in claims with Possess Property rights QUESTION 48 You develop a Windows Communication Foundation (WCF) service that uses basic authentication for client credentials. This service is currently configured to use message security. The service is hosted on a server in workgroup mode. Users report that their passwords are stolen when they use public computers. You need to ensure that messages are secure and users are authenticated. You prevent the service from being called over HTTP through Microsoft Internet Information Services (IIS) configuration. What should you do next? A.    Use the transport security mode and specify None for transport client credential type. B.    Use the transportWithMessageCredential security mode and specify Basic for the transport client credential type. C.    Use the message security mode and specify Basic for the transport client credential type. D.    Use the transportWithMessageCredential security mode and specify None for the transport client credential type. Answer: B QUESTION 49 You are developing a Windows Communication Foundation (WCF) service that will be hosted in Microsoft Internet Information Services (IIS) 7.0. The service must be hosted in an lIS application named Info. You need to enable this service to be hosted in llS by changing the web.config file. Which XML segment should you add to the web.config file? A.    <serviceHostingEnvironment> <senviceActivations> <add relativeAddress="Info.svc" service="Info" /> </serviceActivations> </serviceHostingEnvironment> B.    <serviceHostingEnvironment> <serviceActivations> <add relativeAddress="Info" service="Info.svc" /> </serviceActivations> </serviceHostingEnvironment> C.    <serviceHostingEnvironment> <transportConfigurationTypes> <add name="Info" transportConfigurationType="Info.svc"/> </transportConfigurationTypes> </serviceHostingEnvironment> D.    <serviceHostingEnvironment> <transportConfigurationTypes> <add name="Info.svc" transportConfigurationType="FileNotRequired" /> </transportConfigurationTypes> <serviceHostingEnvironment> Answer: A QUESTION 50 You are developing a Windows Communication Foundation (WCF) service that reads messages from a public non-transactional MSMQ queue. You need to configure the service to read messages from the failed-delivery queue. Which URI should you specify in the endpoint configuration settings of the service? A.    net.msmq://localhost/msmq$FailedMessages B.    net.msmq://localhost/msmq$DeadLetter C.    net.msmq://localhost/system$DeadXact D.    net.msmq://localhost/system$DeadLetter Answer: D Microsoft 70-513 exam questions are available in PDF and VCE format. This makes it very convenient for you to follow the course and study the exam whenever and wherever you want. The Microsoft 70-513 exam questions follow the exact paper pattern and question type of the actual 70-513 certification exam, it lets you recreate the exact exam scenario, so you are armed with the correct information for the 70-513 certification exam. 2016 Microsoft 70-513 exam dumps (All 341 Q&As) from GreatExam: http://www.greatexam.com/70-513-exam-questions.html [100% Exam Pass Guaranteed!!!] --------------------------------------------------- Images: https://www.pass4suredumps.org/data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 http://examgod.com/geimages/b59c0775addf_9AE1/431_thumb.jpg http://examgod.com/geimages/b59c0775addf_9AE1/432_thumb.jpg --------------------------------------------------- --------------------------------------------------- Post date: 2016-06-06 02:12:52 Post date GMT: 2016-06-06 02:12:52 Post modified date: 2016-06-06 08:24:20 Post modified date GMT: 2016-06-06 08:24:20 ____________________________________________________________________________________________ Export of Post and Page as text file has been powered by [ Universal Post Manager ] plugin from www.gconverters.com