The number 1 leading solution for IT certification needs. Choose your exams and we process them for you. Hassles free!

Featured

05

IT certifications have never been easier before. You will be IT expert in 7days.

Working with several Prometric and VUE testing centers, certtopper.comĀ  can pass the exams for you discreetly and help you get certified like all regular candidates do. The only difference is that you save all your time and effort.

Don't be hesitating any more. We are professional test taker, just seize chance to sigu up with us and sit back to enjoy our service.

Jan 18

MCITP Certification, Configuring Web SSO authentication

Configuring Web SSO authentication
Web SSO authentication will be con

1. First, extend the web application. This can be done from the Central Administration site.
2. Open the Central Administration site by choosing Start trative Tools and clicking on SharePoint 3.0 Central Administration.
3. On the navigation bar, choose Application Management.
4. Click Create or Extend Web Applications and then click Extend an Existing Web Application.

5. Make sure the application is selected in the Web Application menu.
6. In the IIS Web Site section, add a host header (for example, extranet.myresearch.net).

302

Chapter 7

EXERCISE 7.6 (continued)

7. Now change the zone to Extranet.
8. Give the site a host header name. This will be what you will conagainst.
9. Check the box to use SSL.
10. Change the port number to 443 (it is required by ADFS).
11. In the Load Balanced URL box, delete the :443 text string.
12. Finish extending the web application by clicking OK.
13. Verity that the URLs on the Alternate Access Mappings page are correct. (See Figure 7.5 earlier in this chapter.)
14. You will now need to add an SSL certiname that clients will use. You added this same name as a host header.

Configuring Authentication for WSS

303

EXERCISE 7.6 (continued)

You will now conWeb SSO:

15. Under the Application Security section on the Application Management page, click Authentication Providers.
16. From the menu bar labeled Web Application, select your application from the drop down menu.

17. You should now see two mapped zones for this application. Click the Windows link for the Extranet zone.
18. Choose Web Single Sign On in the Authentication Type section.

304

Chapter 7

EXERCISE 7.6 (continued)

19. In the Membership Provider Name box, add the following:
SingleSignOnMembershipProvider2 . Keep this value because you will need it
when you edit the web.config
20. Add SingleSignOnRoleProvider2 in the Role Manager box. Remember this value
also for editing the web.config
21. Check to make sure the Enable Client Integration setting is set to No.
22. Click Save.

Now the application has been conneed to be assigned to the users so they can access this site. MCITP Certification

To find out how to configure user permissions for extranet websites, please
review the documentation found at the following URL: http://technet
.microsoft.com/en-us/windowsserver/sharepoint/default.aspx .

Exam Essentials

Jan 17

MCITP Certification, 70-680 Windows 7 Configuration Eaxm

QUESTION NO: 1

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an application. The application connects to a Microsoft SQL Server database. You create the classes shown in the following exhibit.

You add the following code segment to the application. (Line numbers are included for reference only.) MCITP Certification

01public void QueryPlayers (Listleagues)

02

03

You create a LINQ query to retrieve a collection of Player objects.

You need to ensure that the collection includes all the players from each team and every league. Which code segment should you insert at line 02

A. var query = leagues.Select (l => l.Teams.Select (t => t.Players ));

B. var query = leagues.Select (l => l.Teams.SelectMany (t => t.Players ));

C. var query = leagues.SelectMany (l => l.Teams.SelectMany (t => t.Players ));

D. var query = leagues.SelectMany (l => l.Teams.Select (t => t.Players ));

Answer: C
Explanation:

QUESTION NO: 2

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create a Windows Communication Foundation (WCF) Data Services service. You deploy the data service to the following URL: http://contoso.com/Northwind.svc. You need to update the City property of the Customer record that has its ID value as 123. You also need to preserve the current values of the remaining properties. Which HTTP request should you use?

169

A. PUT /Northwind.svc/Customers(123)
Host: contoso.com
Content-Type: application/json

City: 'Seattle'

B. PUT /Northwind.svc/Customers(123)
Host: contoso.com
Accept: application/json

City: 'Seattle'

C. MERGE /Northwind.svc/Customers(123)
Host: contoso.com
Content-Type: application/json

City: 'Seattle'

D. MERGE /Northwind.svc/Customers(123)
Host: contoso.com
Accept: application/json

City: 'Seattle'

Answer: C
Explanation:

QUESTION NO: 3

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an application. The application connects to a Microsoft SQL Server database. The application uses a DataTable named OrderDetailTable that has the following columns:

ID

OrderID

ProductID

Quantity LineTotal

Some records contain a null value in the LineTotal field and 0 in the Quantity field.

170

You write the following code segment. (Line numbers are included for reference only.) 01DataColumn column = new DataColumn("UnitPrice", typeof(double));

02

03OrderDetailTable.Columns.Add(column);

You need to add a calculated DataColumn named UnitPrice to the OrderDetailTable object. You also need to ensure that UnitPrice is set to 0 when it cannot be calculated.

Which code segment should you insert at line 02?

A. column.Expression = "LineTotal/Quantity";

B. column.Expression = "LineTotal/ISNULL(Quantity, 1)";

C. column.Expression = "if(Quantity > 0, LineTotal/Quantity, 0)";

D. column.Expression = "iif(Quantity > 0, LineTotal/Quantity, 0)";

Answer: D
Explanation: