Set the ProtectionLevel property in line 01 to EncryptAndSign.
Set the ProtectionLevel property in line 04 and line 06 to Sign.
Add a SecurityCriticalAttribute ror each operation.
Add a SecunitySafeCriticalAttribute for each operation.
第1题:
You want to debug the Windows Communication Foundation (WCF) client and server interaction through message and application tracing.You need to correlate traces generated on the client and the server. Which XML segment should you add to the system.diagnostics configuration element in the client and server application configuration file?()
A.
B.
C.
D.
第2题:
A. AnnouncementService
B. AnnouncementClient
C. DiscoveryClient
D. HttpListener
第3题:
A.
B.
C.
D.
第4题:
A.
B.
C.
D.
第5题:
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? ()
第6题:
You are debugging a Windows Communication Foundation (WCF) service. The service uses signed and encrypted messages.You need to configure logging so that you can read the contents of the messages. What should you do?()
第7题:
A Windows Communication Foundation (WCF) service sends notifications when the service is started and stopped.You need to implement a client that logs these notifications. Which class should you use?()
第8题:
A Windows Communication Foundation (WCF) service interacts with the database of a workflow engine. Data access authorization is managed by the database, which raises security exceptions if a user is unauthorized to access it.You need to ensure that the application transmits the exceptions raised by the database to the client that is calling the service.Which behavior should you configure and apply to the service?()
第9题:
ChannelFactory
ClientRuntime
CommunicationObject
第10题:
MaxRetryCount
MaxTransferWindowSize
MaxPendingChannels
InactivityTimeout
第11题:
On the OperationContractAttribute, set the AsyncPattern property value to True.
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!
On the client, create a proxy derived from DuplexClientBase(Of TChannel).
On the client, use GetCallbackChannel(Of T).
第12题:
TimeoutException
FaultException
DivideByZeroException
FaultException<SalesFault>
第13题:
A Windows Communication Foundation (WCF) service only accepts messages that are signed and encrypted. A client application is not receiving expected responses from the service. You need to enable logging to verify that the messages from the client are signed and encrypted. You also need to see what each message looks like before the message body is deserialized into a NET object. What should you do?()
A.
B.
C.
D.
第14题:
Windows Communication Foundation (WCF) service is self-hosted in a console application. The service implements the lTimeService service interface in the TimeService class.You need to configure the service endpoint for HTTP communication. How should you define the service and endpoint tags?()
A.
B.
C.
D.
第15题:
Your Windows Communication Foundation (WCF) client application uses HTTP to communicate with the service.You need to enable message logging and include all security information such as tokens and nonces in logged messages.What should you do?()
A.
B.
C.
D.
第16题:
A Windows Communication Foundation (WCF) service uses the following service contract. [ServiceContract] public interface IService{ [OperationContract] string Operation1(string s);}You need to ensure that the operation contract Operation1 responds to HTTP POST requests.Which code segment should you use?()
A.
B.
C.
D.
第17题:
You are developing a client application that uses the following code to consume a Windows Communication Foundation (WCF) service.(Line numbers are included for reference only.) 01 BasicHttpBinding myBinding = new BasicHttpBinding( ); 02 EndpointAddress myEndpointAddress = new EndpointAddress("http://contoso.com/TaxService.svc"); 03 ... 04 ITaxService client = channelFactory.CreateChannel( ); 05 string data = client.GetData(1); You need to consume the service. Which code segment should you insert at line 03?()
第18题:
You are building a client for a Windows Communication Foundation (WCF) service. You need to create a proxy to consume this service. Which class should you use?()
第19题:
You are creating a client application and configuring it to call a Windows Communication Foundation (WCF) service.When the application is deployed, it will be configured to send all messages to a WCF routing service. You need to ensure that the application can consume the target service after the application is deployed. What should you do?()
第20题:
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?()
第21题:
Set the ProtectionLevel property in line 01 to EncryptAndSign.
Set the ProtectionLevel property in line 04 and line 06 to Sign.
Add a SecurityCriticalAttribute ror each operation.
Add a SecunitySafeCriticalAttribute for each operation.
第22题:
NetTcpContextBinding
BasicHttpContextBinding
NetTcpBinding
NetMsmqBinding
第23题:
Use the transport security mode and specify None for transport client credential type.
Use the transportWithMessageCredential security mode and specify Basic for the transport client credential type.
Use the message security mode and specify Basic for the transport client credential type.
Use the transportWithMessageCredential security mode and specify None for the transport client credential type.
第24题:
On the OperationContractAttribute, set the AsyncPattern property value to true.
On the OperationContractAttribute, set the ReplyAction property value to the endpoint address of the client.
On the client, create a proxy derived from DuplexClientBase<TChannel >.
On the client, use GetCallbackChannel<T >.