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.
第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.
第2题:
A. NetTcpContextBinding
B. BasicHttpContextBinding
C. NetTcpBinding
D. NetMsmqBinding
第3题:
A.OnlytheheartbeatIPnetworkcanexistinaVPNstylenetwork.
B.HACMpmusthaveseparateVPN’sforall’non-service’and’service’adapternetworks.
C.IfaVPNisusedforIPtraffictheheartbeatingmustbedoneoverdiskconnections.
D.HACMPcanexistinaVPNnetworkenvironment,butspecialconsiderationsmustbe addressed.
第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.
第5题:
A.
B.
C.
D.
第6题:
启动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