What are two possible ways to achieve this goal?
You use Microsoft Visual Studio 2005 to create a custom Web service discovery system that contains Disco files for your Web services.
You need to have the Disco file for each of your Web services for auditing purposes.
What are two possible ways to achieve this goal? (Each correct answer presents a complete solution. Choose two.)
What should you do?
You are configuring the currency type for the Entity dimension in a model.
You add the Dollar (adjusted) currency type to the Currency dimension. The Dollar (adjusted) currency type does not appear in the Select Member window. You need to ensure that Dollar (adjusted) appears in the Select Member window. What should you do?
What should you do?
You are creating an ASP.NET application by using the .NET Framework 3.5.
The application must dynamically build the user interface.
You need to initialize the dynamically added controls so that they are accessible during the lifetime of the page. You also need to ensure that the page code can handle the PostBack events for the controls.
What should you do?
What should you do?
You call a method in a Web service.
The following exception is thrown in the Web service client.
System.Web.Services.Protocols.SoapException: Server was unable toprocess request. –> System.NullReferenceException: Object reference not set to an instance of an object.
You discover that it is the following line of code that throws the exception.
if (Session [“StoredValue”] == null)
You need to ensure that the method runs without throwing the exception. What should you do?
What should you do?
You plan to load dimension members to a predefined dimension. The data that is used by the dimension is located in a Microsoft SQL Server database. You start the Load Members wizard. You discover that the database is inaccessible. You need to ensure that you can load the data by using the Load Members wizard. What should you do?
What should you do?
You are creating an ASP.NET application by using the .NET Framework 3.5. The application will run on a web farm with no server affinity. Users access the web site daily.
You are designing a strategy for persisting user search history.
You need to ensure that a user’s search history is persisted from one day to the next.
What should you do?
What should you do?
You create a Web service.
The Web service must be deployed on a remote Web server.
You need to ensure that the deployment does not place the source code for the Web service on the Web server.
What should you do?
What should you do?
You plan to populate a predefined Currency dimension with data stored in a Microsoft Office Excel file. The file has an XLSX extension. You discover that the Load Members wizard is unable to load the XLSX file. You need to ensure that the Load Members wizard can load data from the XLSX file. What should you do?
What should you do?
You are creating an ASP.NET application by using the .NET Framework 3.5.
You are designing the session-state storage management strategy for the application. The application supports a Web farm environment.
You need to implement the strategy by setting the storage method for the session-state of the application. You also need to ensure optimal performance of the application.
What should you do?
What should you do?
A message queue named SecureQueue requires incoming messages to be authenticated.
When an application attempts to send a message to SecureQueue, the following exception is thrown.
User’s internal Message Queuing certificate does not exist.The following code is used to send the message.
(Line numbers are included for reference only.)
01 MessageQueue mq = new MessageQueue(“.\\SecureQueue”);
02 Message m = new Message(“Test Message”);
03 m.UseAuthentication = true;
04 mq.Send(m);
You need to ensure that a message can be sent to SecureQueue without the exception being thrown.
What should you do?