Your company has a Windows Communication Foundation (WCF) service at the URL http://services.contoso.com/OrderLookupService.svc.The section of the configuration file is as follows. (Line numbers are included for reference only.)01 02 03 04 05 06 ...0708 09 10 11 You need to ensure that the service publishes the WSDL description at http://services.contoso.com/OrderLookupService.svc?wsdl.What should you do?()A.B.C.D.

Your company has a Windows Communication Foundation (WCF) service at the URL http://services.contoso.com/OrderLookupService.svc.The section of the configuration file is as follows. (Line numbers are included for reference only.)01 02 03 04 05 06 ...0708 09 10 11 You need to ensure that the service publishes the WSDL description at http://services.contoso.com/OrderLookupService.svc?wsdl.What should you do?()

A.

B.

C.

D.


相关考题:

以下正确的URL是:() A、http://computer/index.htmB、file://c:\\windows\\test.htmC、mailto:D、ftps://.dn

You are developing a Windows Communication Foundation (WCF) service.You need to enable security auditing for all events.What should you do?() A. Set the serviceAuthorizationAuditLevel setting to Success and the messageAuthenticationAuditLevel setting to Success.B. Set the messageAuthenticationAuditLevel setting to Success and the auditLogLocation setting to Application.C. Set the serviceAuthorizationAuditLevel setting to SuccessAndFailure and the messageAuthenticationAuditLevel setting to SuccessAndFailure.D. Set the messageAuthenticationAuditLevel setting to SuccessAndFailure and the auditLogLocation setting to Security.

You are developing a Windows Service. The Windows Service will host a Windows Communication Foundation (WCF) service.The Windows Service class will inherit from ServiceBase.You need to ensure that the WCF service starts when the Windows Service is restarted.What should you do in the Windows Service class?()A.B.C.D.

You are creating an application that consumes a Windows Communication Foundation (WCF) service. The service implements the IService contract. The client application contains the CallbackHandler class, which implements IServiceCallback.You need to ensure that a client proxy is created that can communicate with the service over a duplex channel.Which code segment should you use?()A.B.C.D.

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.

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.

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. NetTcpContextBindingB. BasicHttpContextBindingC. NetTcpBindingD. NetMsmqBinding

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.

Company.comhasdecidedtoimplementVPNforallnetworktraffic.HowmightthismightaffectHACMP?() A.OnlytheheartbeatIPnetworkcanexistinaVPNstylenetwork.B.HACMpmusthaveseparateVPN’sforall’non-service’and’service’adapternetworks.C.IfaVPNisusedforIPtraffictheheartbeatingmustbedoneoverdiskconnections.D.HACMPcanexistinaVPNnetworkenvironment,butspecialconsiderationsmustbe addressed.

启动WCF的MyService服务器正确方法是A.String url = "http://" + Dns.GetHostName() + ":8080/WCFTestServer/"; host = new ServiceHost(MyService, url); host.Open();#B.String url = "http://" + Dns.GetHostName() + ":8080/WCFTestServer/"; host = new ServiceHost(MyService, new Uri(url)); host.Open();#C.String url = "http://" + Dns.GetHostName() + ":8080/WCFTestServer/"; host = new ServiceHost(typeof(MyService), new Uri(url)); host.Open();#D.String url = "http://" + D