You need to ensure that the service verifies that the security token is not changed during transit
You are developing a Windows Communication Foundation (WCF) service. One of the
parameters used with the service operations is a security token. The security token is not
sensitive. The monitoring software tracks security tokens and can read tokens in clear text
only. The company security policy requires that you validate all clear text data passed over
the corporate network. You need to ensure that the service verifies that the security token is
not changed during transit. What should you do?
What will you do to accomplish this?
You work as an ASP.NET Web Application Developer for SomeCompany. The company uses Visual
Studio .NET 2010 as its application development platform. You create an ASP.NET Web application
using .NET Framework 4.0. The ASP.NET application is used to track employee performance. It uses
Microsoft Windows authentication. Employees are members of a group named Employees.
Managers are members of a group named Managers. The root folder of the application is named
Details. The Details folder displays information about employees‘ performance. The Details folder
has a subfolder named MoreDetails. You need to ensure that employees and managers can access
pages stored in the Details folder. However, only managers can access pages stored in the
MoreDetails folder. You make the following entries in the Web.config file in the Details folder. (Line
numbers are given for reference only.)
1 <authentication mode=”Windows” / >
2 <authorization>
3 <allow roles=”Employees, Managers” / >
4 <deny users=”*” />
5 </authorization>
You make the following entries in the Web.config file in the MoreDetails folder. (Line numbers are
given for reference only.)
1 <authentication=”Windows” />
2 <authorization>
3 <allow roles=”Managers” />
4 <deny users=”*” />
5 </authorization>
When managers try to access pages stored in the MoreDetails folder, they receive the following
error message:
“An error occurred during the processing of a configuration file required to service this request.”
You must ensure that managers are able to access pages stored in the MoreDetails folder. What will
you do to accomplish this?
Which event of the GridView class occurs when the Edit button of a row is clicked, but before the GridView con
Which event of the GridView class occurs when the Edit button of a row is clicked, but before the
GridView control enters edit mode?
Which code segment should you insert at line 12?
You are developing a Windows Communication Foundation (WCF) service. The following
code defines and implements the service. (Line numbers are included for reference only.)
You need to ensure that two identical copies of the received message are created in the
service. Which code segment should you insert at line 12?
What will you do?
You work as an ASP.NET Web Application Developer for SomeCompany. The company uses Visual
Studio .NET 2010 as its application development platform. You create an ASP.NET Web application
using .NET Framework 4.0. You create a Web page in the application. The Web page will get large
sets of data from a data source. You add a DataPager control to the page. You are required to display
navigation controls that enable you to create a custom paging Ul for the DataPager control. What
will you do?
What will you do to accomplish this?
You work as an ASP.NET Web Application Developer for SomeCompany. The company uses Visual
Studio .NET 2010 as its application development platform. You are creating an ASP.NET Web
application using .NET Framework 4.0. The Web application comprises a class named Employee with
properties named as First Name, Last Name, and Age. You add a Web page in which you get a list of
Employee objects and display those objects in a GridView control. You are required to add code so
that the GridView row is highlighted in red color if the age of the employee is less than 21 years.
What will you do to accomplish this?
You need to set up the URI that is mapped to the service
You develop a Windows Communication Foundation (WCF) service. You name the service
MovieService in the Movie namespace. The service is hosted in Microsoft Internet
Information Services (IIS). You copy the assembly containing the service to the bin folder in
the virtual directory path. You need to set up the URI that is mapped to the service. What
should you do?
Which tool is used to simplify the migration, management and deployment of IIS Web servers, Web applications a
Which tool is used to simplify the migration, management and deployment of IIS Web servers, Web
applications and Web sites?
Which of the following deployment methods will you select to accomplish this?
You work as an ASP.NET Web Application Developer for SomeCompany. The company uses Visual
Studio .NET 2010 as its application development platform. You have recently finished the
development of an ASP.NET Web application using .NET Framework 4.0. Now, you are deploying the
ASP.NET Web application to a remote server. You are required to select a deployment method that
will make sure that all Internet Information Services (IIS) settings, in addition to the Web content,
are deployed to the remote server. Which of the following deployment methods will you select to
accomplish this?
You need to ensure that the service always listens at net.pipe://SupplyChainServer/Pipe
You are developing a Windows Communication Foundation (WCF) service that is used to
check the status of orders placed by customers. The following code segment is part of your
service. (Line numbers are included for reference only.) You need to ensure that the service
always listens at net.pipe://SupplyChainServer/Pipe. What should you do?