You develop a Windows Communication Foundation (WCF) service to generate reports. Client applications call the service to initiate report generation but do not wait for the reports to be generated. The service does not provide any status to the client app

题目

You develop a Windows Communication Foundation (WCF) service to generate reports. Client applications call the service to initiate report generation but do not wait for the reports to be generated. The service does not provide any status to the client applications. The service class is defined as follows. (Line numbers are included for reference only.)01 [ServiceContract]02 public class ReportGeneratorService03 {04 ...05 private int GenerateReports(int clientID)06 {07 ...08 return 0;09 }10 }You need to ensure that client applications can initiate reports without waiting for status.Which two actions should you perform (Each correct answer presents part of the solution. Choose two.) ()。

A. Insert the following code at line 04. [OperationContract(IsOneWay=true)]

B. Insert the following code at line 04. [OperationContract(AsyncPattern=false)]

C. At line 05, change the GenerateReports method from private to public.

D. Remove line 08. At line 05, change the return type of GenerateReports method to void.


相似考题
更多“You develop a Windows Communication Foundation (WCF) service to generate reports. Client a ”相关问题
  • 第1题:

    You are developing a Windows Communication Foundation (WCF) service. The service configuration file has a element defined. You need to ensure that all security audit information, trace logging, and message logging failures are recorded.Which configuration segment should you add to the element?()

    A.

    B.

    C.

    D.


    参考答案:C

  • 第2题:

    You are creating a Windows Communication Foundation (WCF) service. You need to ensure that the service is compatible with ASP.NET to make use of the session state. Which binding should you use?()

    A. NetTcpContextBinding

    B. BasicHttpContextBinding

    C. NetTcpBinding

    D. NetMsmqBinding


    参考答案:B

  • 第3题:

    You have a secured Windows Communication Foundation (WCF) service. You need to track unsuccessful attempts to access the service. What should you do?()

    A. Set the authorization Manager Type attribute of the service Authorization behavior to Message.

    B. Set the include Exception Detailsln Faults attribute of the service Debug behavior to true.

    C. Set the Mode attribute of the security configuration element to Message.

    D. Set the message Authentication AuditLevel attribute of the service Security Audit behavior to Failure.


    参考答案:D

  • 第4题:

    You are developing a Windows Communication Foundation (WCF) service. The service operation takes a customer number as the only argument and returns information about the customer. The service requires a security token in the header of the message. You need to create a message contract for the service.Which code segment should you use?()

    A.

    B.

    C.

    D.


    参考答案:D

  • 第5题:

    You have an existing Windows Communication Foundation (WCF) service. You need to ensure that other services are notified when the service is started.What should you do?()

    A.

    B.

    C.

    D.


    参考答案:D

  • 第6题:

    You are developing a data contract for a Windows Communication Foundation (WCF) service. The data in the data contract must participate in round trips. Strict schema validity is not required. You need to ensure that the contract is forward-compatible and allows new data members to be added to it. Which interface should you implement in the data contract class?()

    A.ICommunicationObject

    B.IExtension

    C.IExtensibleObject

    D.IExtensibleDataObject


    参考答案:D