PrepAway - Latest Free Exam Questions & Answers

What should you do?

You work as the Microsoft.NET developer at Domain.com. The Domain.com network consists of a single Active Directory domain named Domain.com. All servers in the domain run Windows Server 2003.
The development and deployment of Extensible Markup Language (XML) Web Services forms part of your responsibilities at Domain.com. You are currently installing the Microsoft Web Services Enhancements (WSE) 3.0 framework on your development computer. At present the WSE configuration settings are not enabled on your computer.
You are required to modify the Web.config file for an ASP.NET application to enable it to support WSE configuration settings.

What should you do? (Choose the correct configuration.)

PrepAway - Latest Free Exam Questions & Answers

A.
<configuration>
<appSettings>
<add
key=”microsoft.web.services3″value=Microsoft.Web.Services3.Configuration.WebServicesConfiguration, Microsoft.Web.Services3, Version = 3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35/>
</appSettings>
</configuration>

B.
<configuration>
<appSettings>
<add key=”wse” value=”Microsoft.web.services3″/>
</appSettings>
<microsoft.web.services3>
</microsoft.web.services3>
</configuration>

C.
<configuration>
<configSections>
<section
name=”microsoft.web.services3″type=”Microsoft.Web.Services3.Configuration.WebServicesConfiguration, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35″/>
</configSections>
<microsoft.web.services3>
</microsoft.web.services3>
</configuration>

D.
<configuration>
<appSettings>
<add key=”
microsoft.web.services3″value=”Microsoft.Web.Services3.Configuration.WebServicesConfiguration, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
</appSettings>
<microsoft.web.services3>
</microsoft.web.services3>
</configuration>

Explanation:
You need to specify the configuration settings handler in the Web.config file. This will enable ASP.NET to interpret settings that it does not understand by default.
Incorrect answers:
A, B, D: You should not specify the configuration settings section handler in the appSettings element because this element is used to specify application-specific configuration information.


Leave a Reply