What should you create?
You create a new item that has a tracking dimension group. The tracking dimension group
includes serial numbers as an active dimension. You need to configure the item to use
automatic allocation of the serial numbers. What should you create?
You need to send the stack trace of any unhandled exceptions to clients as a fault message
You are implementing a Windows Communication Foundation (WCF) service contract
named IContosoService in a class named ContosoService. The service occasionally fails
due to an exception being thrown at the service. You need to send the stack trace of any
unhandled exceptions to clients as a fault message. What should you do?
You need to ensure that the JavaScript code can locate the HTML elements created for each row in these GridVie
You are implementing an ASP.NET application that uses data-bound GridView controls in multiple
pages. You add JavaScript code to periodically update specific types of data items in these GridView
controls. You need to ensure that the JavaScript code can locate the HTML elements created for
each row in these GridView controls, without needing to be changed if the controls are moved from
one page to another. What should you do?
What are two possible ways to achieve this goal?
You need to add freight and handling charges when you enter a new purchase order. What
are two possible ways to achieve this goal? Each correct answer presents a complete
solution.
You need to ensure that a quality order is generated automatically after you post a product receipt for a purc
You need to ensure that a quality order is generated automatically after you post a product
receipt for a purchase order. What should you do?
Which XML segment should you add to the system.serviceModel/diagnostics/messageLogging/filters configuration e
A Windows Communication Foundation (WCF) service has the following contract.
[ServiceContract(Namespace=”http://contoso.com”)] public interface IShipping {
[OperationContract] string DoWork(int id); } This is one of several service contracts hosted
by your application. All endpoints use SOAP 1.2 bindings with WS-Addressing 1.0. The
System.ServiceModel.MessageLogging trace source in the system.diagnostics
configuration section is configured with one listener. You need to make sure that only the
messages that are returned from the DoWork operation are logged. Which XML segment
should you add to the system.serviceModel/diagnostics/messageLogging/filters
configuration element?
You need to ensure that all data that is submitted passes validation before the data is saved in a database
You are developing an ASP.NET Web page that contains input controls, validation controls, and a
button named btnSubmit. The page has the following code-behind. (Line numbers are included for
reference only.)
01 public partial class _Default : System.Web.UI.Page
02 {
03 protected void SaveToDatabase()
04 {
05
06 }
07
08 protected void btnSubmit_Click(object sender,
EventArgs e)
09 {
10
11 }
12 }
You need to ensure that all data that is submitted passes validation before the data is saved in a
database. What should you do?
Which three configuration technologies are supported on the product master definition?
Which three configuration technologies are supported on the product master definition?
Each correct answer presents part of the solution.
You need to display the value of the master page’s Region property in lblRegion
You are creating an ASP.NET Web site. The site has a master page named Custom.master. The
code-behind file for Custom.master contains the following code segment.
public partial class CustomMaster : MasterPage
{
public string Region
{
get; set;
}
protected void Page_Load(object sender, EventArgs e)
{}}
You create a new ASP.NET page and specify Custom.master as its master page. You add a Label
control named lblRegion to the new page. You need to display the value of the master page’s Region
property in lblRegion. What should you do?
You need to enable message logging and include all security information such as tokens and nonces in logged me
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?