070-503 試験問題を無料オンラインアクセス
試験コード: | 070-503 |
試験名称: | TS: Microsoft .NET Framework 3.5 C Windows Communication Foundation |
認定資格: | Microsoft |
無料問題数: | 270 |
更新日: | 2025-09-01 |
You create a Windows Communication Foundation service by using Microsoft .NET
Framework 3.5. You set up tracing for the service.
The tracing fails because of an error in the service configuration. You need to identify the cause of the error.
What should you do?
You are creating a client application by using Microsoft .NET Framework 3.5. The application will be accessible on the Internet.
You plan to use the wsHttpBinding binding by using HTTPS. The Windows Communication Foundation (WCF) service is hosted by a Windows service. You associate the HTTPS port of the WCF server with an X.509 certificate.
You need to ensure that the client application trusts and validates the certificate.
What should you do?
You are creating a Windows Communication Foundation service by using Microsoft .NET Framework 3.5.
You need to ensure that you can customize the behavior of the ClientRuntime class and the DispatchRuntime class. You must achieve this goal without altering the behavior of the service.
What should you do?
You are creating a Windows Communication Foundation service by using Microsoft .NET Framework 3.5. The service contains the following binding configuration in the configuration file. (Line numbers are included for reference only.)
01 <wsHttpBinding>
02 <binding name="ssl">
04 </binding>
05 </wsHttpBinding>
You need to ensure that the following requirements are met:
Which configuration setting should you insert at line 03?
Your company has a set of e-commerce services that were created by using Microsoft .NET Framework 3.5. The Windows Communication Foundation model was used to create the services.
The services include a catalog and a shopping cart that are deployed to the same physical server. The catalog is a stateless, single-instance service. The shopping cart is a reentrant, per-session service.
The catalog service contains the following code fragment.
The shopping cart service contains the following code fragment.
During peak hours, the number of simultaneous catalog requests increase. This prevents customers from updating their shopping carts. You need to ensure that the customers can update their shopping carts even during peak catalog request traffic.
Which set of code fragments should you use to replace the existing code fragments?