<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>IIS 6.0/7.0</title><link>http://mindsharpblogs.com/driskell/category/87.aspx</link><description>Internet Information Services (IIS) 6.0/7.0 are Web servers that provides a reliable, manageable, and scalable Web application infrastructure.</description><managingEditor>Corro'll Driskell</managingEditor><dc:language>en-US</dc:language><generator>.Text Version 0.95.2004.102</generator><item><dc:creator>Corro'll Driskell</dc:creator><title>Pages of the past creates sceptics of the present..</title><link>http://mindsharpblogs.com/driskell/archive/2008/05/22/PagesOfThePast.aspx</link><pubDate>Thu, 22 May 2008 07:27:00 GMT</pubDate><guid>http://mindsharpblogs.com/driskell/archive/2008/05/22/PagesOfThePast.aspx</guid><wfw:comment>http://mindsharpblogs.com/driskell/comments/5530.aspx</wfw:comment><comments>http://mindsharpblogs.com/driskell/archive/2008/05/22/PagesOfThePast.aspx#Feedback</comments><slash:comments>13</slash:comments><wfw:commentRss>http://mindsharpblogs.com/driskell/comments/commentRss/5530.aspx</wfw:commentRss><trackback:ping>http://mindsharpblogs.com/driskell/services/trackbacks/5530.aspx</trackback:ping><description>&lt;P&gt;&lt;I&gt;I have worked with many organizations building web based applications on the SharePoint Technologies platform.&amp;nbsp; We have used tools such as Visual Studio, Front Page and, now, SharePoint Designer. Equally important, I present at a number of SharePoint summits across North America. The presentations delivered range from Designing and Implementation &amp;#8211; of the various SharePoint related solutions &amp;#8211; to branding &amp;#8211; using SharePoint Designer. So, it is safe to say that I have quite a bit of experience in working with customers that are resistant to using SharePoint Designer as a customization (some would say branding) tool.&amp;nbsp; &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Many of those customers and attendees moved from the Windows SharePoint Services 2.0 platform to the Windows SharePoint Services 3.0 platform.&amp;nbsp; Not only did they migrate the content, but also the skepticism associated with customizing the pages in a SharePoint environment.&lt;/I&gt; Or, they have heard about the nightmares associated with rendering customized - back then called unghosting - pages.Therefore, I decided to blog about the new features provided by the ASP.NET 2.0 framework and how it eliminates the problems experienced in the Windows SharePoint Services 2.0 environment. That is, Windows SharePoint Services 2.0 &amp;#8211; due to the limitations of ASP.NET 1.1 &amp;#8211; had a difficult time parsing pages from the database. As a result, all user requests - for SharePoint sites - were routed to the SQL Server database. All together, that means that Windows SharePoint Services 2.0 had a difficult time parsing and caching pages on the Web Front End servers.&lt;/P&gt;
&lt;P&gt;&lt;I&gt;For all that, Windows SharePoint Services 3.0 integration with ASP.NET 2.0 has been completely redesigned. First, Windows SharePoint Services 3.0 is built on ASP.NET 2.0, which provides significant enhancements over ASP.NET 1.1. Furthermore, the routing infrastructure was improved by removing the ISAPI filter and by adding an HttpModule and an HttpHandler that are registered with ASP.NET using entries in the web.config file. &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;When a SharePoint Administrator creates a Web Application, the SharePoint Administrator is extending an IIS web site to function as a Web application. Also, Windows SharePoint Services 3.0 adds a wildcard application map to the IIS Metabase file. &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;That is, all incoming HTTP requests are always processed by the ASP.NET runtime environment and are fully initialized with the ASP.NET context before the HTTP Requests are forwarded to the code that processes all Windows SharePoint Services 3.0 related requests. For the most part, the map routes are due to the wildcard application maps in the IIS Metabase. As a result, all incoming HTTP requests to the ASP.NET runtime- regardless of file types .pdf, .doc, &amp;#8230; etc&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Overall, the ASP.NET 2.0 framework addressed a number of gaps from the previous &amp;#8211; Windows SharePoint Services 2.0 - version of SharePoint Technologies. The most notable gap addressed by the newASP.NET architecture addressed the gap related to how .aspx pages are parsed and compiled. The problem in SharePoint Technologies was that it could not leverage the .aspx page parser used by ASP.NET 1.1. The fact that Windows SharePoint Services 2.0 stored .aspx pages in the SQL Server database presented a problem. ASP.NET 1.1 worked only with pages that reside on the local file system of Web Front End servers. As a result, Windows SharePoint Services could not take advantage of the ASP.NET 1.1 page parser. &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Virtual Path Providers were introduced in the ASP.NET 2.0 framework. The new framework allowed developers to write their own custom virtual providers. The value add allowed the SharePoint Product team to write a customized virtual provider &amp;#8211; SPVirtualPathProvider - that retrieves .aspx pages from the SQL Server Database. Also, the PageParserFilter affords the SPVirtualPathProvider the capability to control how pages are parsed and compiled. &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Once the SPVirtualPathProvider retrieves a .aspx page from the SQL Server database it leverages the ASP.NET 2.0&amp;#8217;s .aspx parser. So then, Windows SharePoint Services 3.0 does not fall victim to the performance reduction, with respect to the limited page parsing, experienced by the Windows SharePoint Services 2.0 environment.&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.mindsharpblogs.com//images/mindsharpblogs_com/driskell/115/o_pagerendering.jpg"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=225 alt=pagerendering src="http://www.mindsharpblogs.com//images/mindsharpblogs_com/driskell/115/o_pagerendering.jpg" width=399 border=0&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Figure 1 Page Rendering Using the SPVirtualPathProvider&lt;/P&gt;
&lt;P&gt;In simplier terms, the perceived problems with customizing pages in a SharePoint environment has been addressed from page rendering view point. Despite the negative perception of the ASP.NET 1.1 limitations and how it affected the page rendering in the Windows SharePoint Services 2.0 environment, I think that it is time for the masses to accept the fact that ASP.NET 2.0 addressed those limitations. Whether pages are rendered from the Web Front End file system or from the SQL Server Database, ASP.NET 2.0 ensures that all pages are properly parsed. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is just my $19.11 worth....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;
&lt;DIV class=wlWriterEditableSmartContent id=scid:0767317B-992E-4b12-91E0-4F059A8CECA8:d7044d2c-6d95-4df6-bf20-d4f907110cc8 style="PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px"&gt;Technorati Tags: &lt;A href="http://technorati.com/tags/SharePoint%20Designer" rel=tag&gt;SharePoint Designer&lt;/A&gt;,&lt;A href="http://technorati.com/tags/FrontPate" rel=tag&gt;FrontPate&lt;/A&gt;,&lt;A href="http://technorati.com/tags/SharePoint%20Technologies" rel=tag&gt;SharePoint Technologies&lt;/A&gt;,&lt;A href="http://technorati.com/tags/Windows%20SharePoint%20Services%202.0" rel=tag&gt;Windows SharePoint Services 2.0&lt;/A&gt;,&lt;A href="http://technorati.com/tags/Windows%20SharePoint%20Services%203.0" rel=tag&gt;Windows SharePoint Services 3.0&lt;/A&gt;,&lt;A href="http://technorati.com/tags/WSS%202.0" rel=tag&gt;WSS 2.0&lt;/A&gt;,&lt;A href="http://technorati.com/tags/WSS%203.0" rel=tag&gt;WSS 3.0&lt;/A&gt;&lt;/DIV&gt;&lt;I&gt;&lt;/I&gt;
&lt;P&gt;&lt;/P&gt;&lt;img src ="http://mindsharpblogs.com/driskell/aggbug/5530.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Corro'll Driskell</dc:creator><title>Speaking @ Hampton Roads SQL Server User Group</title><link>http://mindsharpblogs.com/driskell/archive/2008/05/11/5090.aspx</link><pubDate>Sun, 11 May 2008 11:26:00 GMT</pubDate><guid>http://mindsharpblogs.com/driskell/archive/2008/05/11/5090.aspx</guid><wfw:comment>http://mindsharpblogs.com/driskell/comments/5090.aspx</wfw:comment><comments>http://mindsharpblogs.com/driskell/archive/2008/05/11/5090.aspx#Feedback</comments><slash:comments>5</slash:comments><wfw:commentRss>http://mindsharpblogs.com/driskell/comments/commentRss/5090.aspx</wfw:commentRss><trackback:ping>http://mindsharpblogs.com/driskell/services/trackbacks/5090.aspx</trackback:ping><description>&lt;p&gt;All,&lt;/p&gt; &lt;p&gt;I am on my way to the Norfolk - Hampton Virginia area.  I will speak at the &lt;a href="http://www.hrssug.org/default.aspx" target="_blank"&gt;Hampton Roads SQL Server User Group&lt;/a&gt; on Thursday, May 15th, 6:30 PM at &lt;a href="http://www.infotecpro.com" target="_blank"&gt;INFOTEC&lt;/a&gt;.  I am speaking about SharePoint Designer and InfoPath Form Services support for a number of connection scenarios. It is going to be a great presentation.&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;Location: (&lt;a href="http://www.mapquest.com/maps/map.adp?formtype=address&amp;country=US&amp;popflag=0&amp;latitude=&amp;longitude=&amp;name=&amp;phone=&amp;level=&amp;addtohistory=&amp;cat=&amp;address=5501+greenwich+rd&amp;city=virginia+beach&amp;state=va&amp;zipcode=" target="_blank"&gt;Click her for the directions&lt;/a&gt;)&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;&lt;a href="http://www.infotecpro.com" target="_blank"&gt;INFOTEC&lt;/a&gt;&lt;/p&gt; &lt;p&gt;5501 Greenwich Rd  &lt;p&gt;Virginia Beach, VA 23462-6540&lt;/p&gt;&lt;/blockquote&gt;&lt;img src ="http://mindsharpblogs.com/driskell/aggbug/5090.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Corro'll Driskell</dc:creator><title>Microsoft Office SharePoint Server Summit FAQ</title><link>http://mindsharpblogs.com/driskell/archive/2007/05/15/1769.aspx</link><pubDate>Tue, 15 May 2007 07:16:00 GMT</pubDate><guid>http://mindsharpblogs.com/driskell/archive/2007/05/15/1769.aspx</guid><wfw:comment>http://mindsharpblogs.com/driskell/comments/1769.aspx</wfw:comment><comments>http://mindsharpblogs.com/driskell/archive/2007/05/15/1769.aspx#Feedback</comments><slash:comments>17</slash:comments><wfw:commentRss>http://mindsharpblogs.com/driskell/comments/commentRss/1769.aspx</wfw:commentRss><trackback:ping>http://mindsharpblogs.com/driskell/services/trackbacks/1769.aspx</trackback:ping><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;NOTE: All responses for each question is based on collective feedback from ALL Mindsharp Instructors.&amp;nbsp; By no means, were any questions answered exclusively by me.&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;During the Mindsharp Summits, there are a number of questions that are consistently&amp;nbsp;asked.&amp;nbsp;&amp;nbsp;We, please visit&amp;nbsp; &lt;/FONT&gt;&lt;A href="http://www.mindsharpblogs.com/"&gt;&lt;SPAN style="COLOR: blue"&gt;&lt;FONT face="Times New Roman"&gt;www.mindsharpblogs.com&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;for a list of Mindsharp instructors,&amp;nbsp; decided to&amp;nbsp;provide an answer to those questions asked.&amp;nbsp;&amp;nbsp;We will continue to&amp;nbsp;update this posting.&amp;nbsp; In order to remain up to date,&amp;nbsp;We recommended that you sign up for the RSS feed for Mindsharp Blogs.&amp;nbsp; &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://www.mindsharpblogs.com/MainFeed.aspx"&gt;&lt;SPAN style="COLOR: blue"&gt;&lt;FONT face="Times New Roman"&gt;http://www.mindsharpblogs.com/MainFeed.aspx&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;Questions:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;1. Can a Web Application (WA)&amp;nbsp;be associated with multiple Shared ServiceProviders (SSP)?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ans:&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt; a Web Application can only be associated with one Shared Service Provider (SSP).&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;That is, a Web Application (WA)&amp;nbsp;has a 1:1 relationship with an Shared Service Provide (SSP).&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;2. Can you configure multiple Shared Service Providers (SSP)&amp;nbsp;to crawl other Web Applications (WA)?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ans:&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Yes.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;It is possible to configure multiple Shared Service Providers (SSPs) to crawl multiple Web Applications (WA)&amp;nbsp;within and between Farms.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;3. Can the user profile write back to Active Directory (AD)?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ans:&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Natively, there is not a two way synchronization between Active Directory (AD)&amp;nbsp;and the Profile Store (PS).&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Currently Out of the Box (OOB), there is only a one way copy, from AD to the PS.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;But, you could use Microsoft Identity Integration Server (MIIS) or even script it. Yet, many of the postings refer to the one way copy as a synchronization between AD and the PS.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;4. What are the implications of&amp;nbsp;associating a Web Application (WA)&amp;nbsp;to another Shared Service Provider (SSP)?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ans:&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Most evident and noticeable is that you lose all global search scopes, audiences and related targeting on list items, navigation links/bars, Web parts, etc. Oddly enough, Excel Calculation Server (ECS), Business Data Catalog (BDC), personalization links, and office &amp;#8216;save as&amp;#8217; integration won&amp;#8217;t be affected, UNLESS the Web Application (WA)&amp;nbsp;that was changed is the Web Application (WA)&amp;nbsp;hosting the My Sites.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;5. What is the Internal&amp;nbsp;URL section in Alternate Access Mapping (AAM)&amp;nbsp;settings? &amp;nbsp;What is its purpose?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;B&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;nbsp;Ans:&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Alternate Access Mapping (AAM)&amp;nbsp; is used to identify possible internal URLs that could be returned to a user.&amp;nbsp; To avoid returning the incorrect URL and relative links, we would provide an entry that ensures that the appropriate Public URL is returned along with its relative links.&amp;nbsp; For instance, in a load balanced scenario it is possible to return the web1 and web2 URLs.&amp;nbsp; We would ensure the return of a public url by configuring an internal url for both web1 and web2 servers.&amp;nbsp; In configuring the Internal URLs we ensure that the public URLs are returned and, at the same time, ensure that the relative links are reflective of the public URLs.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Yet, all alerts and notifications would continue to reflect the default URL.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;6. When do we create a new Web Application (WA)&amp;nbsp;versus a Site Collection (SC)?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ans:&amp;nbsp;&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt; Many teach that one Web application for collaboration is a great start.&amp;nbsp;Also, we&amp;nbsp;would leverage the politics of an organization to force&amp;nbsp;the use of more than one WA, i.e. &lt;A href="http://portal/"&gt;&lt;SPAN style="COLOR: blue"&gt;http://portal&lt;/SPAN&gt;&lt;/A&gt; is tightly controlled whilst &lt;A href="http://hogwild/"&gt;&lt;SPAN style="COLOR: blue"&gt;http://hogwild&lt;/SPAN&gt;&lt;/A&gt; has self-service site mgmt enabled for short-term collaboration, with &lt;A href="http://hogwild/"&gt;&lt;SPAN style="COLOR: blue"&gt;http://hogwild&lt;/SPAN&gt;&lt;/A&gt; using the broken Dead Site Delete functionality.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;That is, the business requirements are the drivers for determining the use of a Web Applications versus Site Collections.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;7. Is there&amp;nbsp;a limitation on the number of Content Databases (CD)? (We are assuming&amp;nbsp;this is referencing assigning CD to a WA.)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ans:&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;This is really a SQL Server 2000 SP4/SQL Server 2005 issue, subject to both hardware and software limitations.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;For the most part, the theoretical limit is very high.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal; TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;8. Can you define&amp;nbsp;Site Collections (SC)&amp;nbsp;in a Content Database (CD)? (We are identifying&amp;nbsp;the process and options used to&amp;nbsp;create a Site Collections (SC)&amp;nbsp;to a specific Content Data (CD).)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ans:&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ben and Nick posted a blog referencing the creation of Site Collections (SC) in specific Content Datases.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Please see posting at:&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://sharepointnick.com/blog/Lists/Posts/Post.aspx?ID=17"&gt;&lt;SPAN style="COLOR: blue"&gt;http://sharepointnick.com/blog/Lists/Posts/Post.aspx?ID=17&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Also, please register for the Mindsharp Premium area, http://mindsharp.com,&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;and download Ben Curry and Kath Hugh&amp;#8217;s whitepaper on the STSADM command line tool.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt; LINE-HEIGHT: normal"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;From the GUI: &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;1, Take the existing contentDB(s) for that web app OFFLINE (this doesn't actually take the Site Collections offline, but prevents new Site Collections from being created in the database) &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;2, Then, create a new ConentDB. &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;3, Create the new Site Collection &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;4, Take the step 2 content database offline. It will function normally, but refuse NEW site collections &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;5, Set the original contentDB online &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;From the command line: &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;Stsadm.exe &amp;#8211;o createsiteinnewdb &amp;#8211;url -owneremail -ownerlogin -databasename &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 12pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;will allow you to create a Site Collection in a dedicated content database. Don't forget to take the database offline after creation, or future sites could be created in the new database.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;9.&amp;nbsp; When would you recommend using Kerberos?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 5pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ans:&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;If your organization is using the Kerberos authentication method, you&amp;nbsp;can configure MOSS&amp;#8217;s Web Application to use the same.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;10. Do all the members of the Farm have to be the same bit (32 or 64)?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Ans: &lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;No. we recommend that all servers of a similar function be the same. i.e. all WFEs serving a given Web App be the same H/W, S/W. There is not technical limitation here, just a Best Practice.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;FONT face="Times New Roman"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-weight: bold"&gt;&lt;FONT face="Times New Roman"&gt;11. In the event a user is absent, Can someone else approve a task? If so, how does that affect the status of the task?&lt;BR&gt;&lt;BR&gt;&lt;B&gt;[BC]&lt;/B&gt; if you allowed that permission during creation. You can also assign a task to a group, so that any member of that group can approve. This is a checkbox available during creation. I STRESS the difference in the two options. The first allows anyone in the group to approve, the second option forces all members of the group to approve.&lt;BR&gt;&lt;BR&gt;&lt;B&gt;[PPS]&lt;/B&gt; using the same options with groups you can also setup that one member from each group must approve before approval is complete. Two from the same group would not be the same thing then as two from different groups.&lt;BR&gt;&lt;BR&gt;&lt;B&gt;[CHD] &lt;/B&gt;Also, any user that has approval rights on the item can approve or reject the item. Of course, the actual approver/rejector of the item name is listed. The name of the person assigned will only be listed when it is approved/rejected under their identity.&lt;BR&gt;&lt;/FONT&gt;&lt;B&gt;&lt;BR&gt;&lt;BR style="mso-special-character: line-break"&gt;&lt;BR style="mso-special-character: line-break"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;A name=1854247476042320384&gt;&lt;/A&gt;&lt;FONT face="Times New Roman"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;11.&amp;nbsp; Does Workflow point to the document item or to the task item? (This question is referencing the assignment of workflow after it is configured on the Document Library.)&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt 0.5in; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;BR&gt;&lt;BR&gt;&lt;FONT face="Times New Roman"&gt;&lt;B&gt;[PPS]&lt;/B&gt; Assignment of Workflow is to a document library, list or content type. They normally use a Task list and a History list to implement the workflow. Users typically interact with the workflow by completing tasks in a task list.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;12. What is a content type? What is its purpose?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt 0.5in; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;Ans&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;: A content type is a reusable collection of settings you want to apply to a certain category of content. Content types enable you to manage the metadata and behaviors of a document or item type in a centralized, reusable way. Content types, a core concept used throughout the functionality and services offered in Microsoft Windows SharePoint Services 3.0, are designed to help users organize their SharePoint content in a more meaningful way. Content types are independent of file formats.&lt;BR&gt;&lt;BR&gt;Microsoft. (2006). Windows SharePoint Server Solution Developer Kit (SDK). Redmond, Washington, USA.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-outline-level: 3"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-weight: bold"&gt;&lt;FONT face="Times New Roman"&gt;13. What is a column? What is a columns purpose?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt 0.5in; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-outline-level: 3"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;Ans&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-weight: bold"&gt;&lt;FONT face="Times New Roman"&gt;: A site column is a reusable column definition, or template, that you can assign to multiple lists across multiple SharePoint sites. Site columns decrease re-work and help you ensure consistency of metadata across sites and lists.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Microsoft. (2006). Windows SharePoint Server Solution Developer Kit (SDK). Redmond, Washington, USA.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-outline-level: 3"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-weight: bold"&gt;&lt;FONT face="Times New Roman"&gt;14. Why would I consider using a Feature?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt 0.5in; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-outline-level: 3"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;FONT face="Times New Roman"&gt;Ans&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-weight: bold"&gt;&lt;FONT face="Times New Roman"&gt;: The use of Features ensures consistency and availability. All in all, the deployment via Features makes site customization and upgrades simple. That is, Features eases the distributed deployment of specific functionality.&lt;BR&gt;&lt;BR&gt;Microsoft. (2006). Windows SharePoint Server Solution Developer Kit (SDK). Redmond, Washington, USA.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;
&lt;P&gt;&lt;FONT face="Times New Roman"&gt;15.&amp;nbsp; Alternate Access Mapping (AAM)&amp;nbsp; is used to identify Public URLs that could provide access to content.&amp;nbsp; To avoid &lt;/FONT&gt;&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;&lt;FONT face="Times New Roman"&gt;returning the incorrect URL and relative links, you would provide an entry, Internal URLs, that ensures that the appropriate Public URL is returned along with its relative links.&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman"&gt;It is confirmed that there are only five, configurable, (5) Alternate Access Mappings (AAM) zones per Web Applications, each zone represents a Public URL. But, that fact doesn&amp;#8217;t limit the number of Internal URLs.&amp;nbsp; The Public Urls/zones&amp;nbsp; are configured when we extend a Web Application.&amp;nbsp; Or, In the event we configure host headers, per Public Url/zone, in IIS. For example, Default: &lt;/FONT&gt;&lt;A href="http://www.sharepoint.info/"&gt;&lt;FONT face="Times New Roman"&gt;www.mindsharp.info&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face="Times New Roman"&gt;, Intranet: intranet.mindsharp.info, Internet: internet.mindsharp.info, External: external.mindsharp.info and Custom: myportal.mindsharp.info.&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman"&gt;The configuration of the Internal Url extends the possibility to support or identify other possible route a user can take to access the content.&amp;nbsp; The Internal URL acts similar to an alias in DNS.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman"&gt;Now, when a user browses to &lt;/FONT&gt;&lt;A href="http://www.sharepoint.info/"&gt;&lt;FONT face="Times New Roman"&gt;http://www.mindsharp.info&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face="Times New Roman"&gt;, the web request is received by the IIS server. SharePoint will then receive the web request, see that the URL of the request is &lt;/FONT&gt;&lt;A href="http://www.sharepoint.info/"&gt;&lt;FONT face="Times New Roman"&gt;http://www.mindsharp.info&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face="Times New Roman"&gt;, find that this URL is assigned to the SharePoint web application, and return the content from that web application.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman"&gt;In addition, because the &lt;/FONT&gt;&lt;A href="http://www.sharepoint.info/"&gt;&lt;FONT face="Times New Roman"&gt;http://www.mindsharp.info&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face="Times New Roman"&gt; URL is assigned to the Internal URL pointing to the &lt;/FONT&gt;&lt;A href="http://internet.sharepoint.info/"&gt;&lt;FONT face="Times New Roman"&gt;http://internet.mindsharp.info&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face="Times New Roman"&gt; Public URL of the Internet zone, SharePoint will also generate links on the pages using the Public URL for that zone &amp;#8211;&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://internet.sharepoint.info/"&gt;&lt;FONT face="Times New Roman"&gt;http://internet.mindsharp.info&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face="Times New Roman"&gt;. This ensures that end users are routed to the proper URL when clicking on links on the page. That is, SharePoint acts similar to reverse proxy servers in that they overwrite the end user's original URL with the URL of the configured Public URLs/zones.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman"&gt;All in all, Alternate Access Mappings' (AAM) configurations, Internal Urls and Public Urls, tells SharePoint how to map web requests to the correct web application and site so that SharePoint can serve the correct content back to the user. It then tells SharePoint what URL the users should be taken to as they interact with SharePoint.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoBibliography style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="mso-no-proof: yes"&gt;&lt;FONT face="Times New Roman"&gt;MSDN: &lt;/FONT&gt;&lt;A href="http://blogs.msdn.com/"&gt;&lt;FONT face="Times New Roman"&gt;http://blogs.msdn.com&lt;/FONT&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P class=MsoBibliography style="MARGIN: 0in 0in 0pt"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt; LINE-HEIGHT: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;NOTE: All responses for each question is based on collective feedback from ALL Mindsharp Instructors.&amp;nbsp; By no means, were any questions answered exclusively by me.&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;img src ="http://mindsharpblogs.com/driskell/aggbug/1769.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Corro'll Driskell</dc:creator><title>SharePointHandler vs. SPVirtualPathProvider: We have arrived...</title><link>http://mindsharpblogs.com/driskell/archive/2007/04/06/1678.aspx</link><pubDate>Fri, 06 Apr 2007 20:18:00 GMT</pubDate><guid>http://mindsharpblogs.com/driskell/archive/2007/04/06/1678.aspx</guid><wfw:comment>http://mindsharpblogs.com/driskell/comments/1678.aspx</wfw:comment><comments>http://mindsharpblogs.com/driskell/archive/2007/04/06/1678.aspx#Feedback</comments><slash:comments>4</slash:comments><wfw:commentRss>http://mindsharpblogs.com/driskell/comments/commentRss/1678.aspx</wfw:commentRss><trackback:ping>http://mindsharpblogs.com/driskell/services/trackbacks/1678.aspx</trackback:ping><description>&lt;P&gt;It has been quite some time since my last post.&amp;nbsp;Consequently,&amp;nbsp;I have been busy, since the launch of WSS 3.0/MOSS 2007.&amp;nbsp; On the contrary, I know that I could have posted at any time from any city during my travels.&amp;nbsp; In any case, I&amp;nbsp;have a duty to post my thoughts referencing the&amp;nbsp;WSS 3.0 and MOSS 2007 technologies.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;In my posting, titled:&amp;nbsp;&lt;A href="http://www.mindsharpblogs.com/driskell/archive/2006/11/17/1373.aspx"&gt;Intergration: WSS 2.0/WSS 3.0, ASP.NET 1.1/2.0 and IIS 6.0&lt;/A&gt;, I promised to set in motion discussions centered around the intergration of WSS 2.0/WSS 3.0 with IIS 6.0.&amp;nbsp; Incidentally, that discussion is long overdue.&amp;nbsp; 
&lt;P&gt;During my presentations, facilitations/training, I have a number of students asking questions about the differences between WSS 2.0/3.0 and SPS 2003/MOSS 2007.&amp;nbsp; Furthermore, many students would like a firm understanding of the page request lifecycles.&amp;nbsp; In any case, all would like to understand, &amp;#8220;Behind the Scenes&amp;#8220;.&amp;nbsp; I thought long and hard about how to attack this subject in a fashion that would be beneficial to as many as possible. 
&lt;P&gt;First of all, I want to discuss the &lt;STRONG&gt;SharePointHandler&lt;/STRONG&gt; - WSS 2.0/SPS 2003&amp;nbsp;- and &lt;STRONG&gt;Virtual Path Provider&lt;/STRONG&gt; - WSS 3.0/MOSS 2007.&amp;nbsp; In essence, I want to focus on the page request lifecycle for, both, WSS 2.0/SPS 2003 and WSS 3.0/MOSS 2007.&amp;nbsp; For the most part, there are a number of articles, blogs and whitepapers out on the web that provide a solid overview of the page request lifecycle for both versions of SharePoint.&amp;nbsp; I would recommend reviewing them all.&amp;nbsp; 
&lt;P&gt;To begin, the SharePointHandler is an HTTP handler used to handle request for the WSS 2.0/SPS 2003 environment.&amp;nbsp; During the install of WSS 2.0/SPS 2003, the ISAPI filter is added to the IIS 6.0.&amp;nbsp; Hence, the ISAPI filter intercepts all page requests from IIS.&amp;nbsp;The ISAPI filter is charged with determining the handler of a&amp;nbsp;page request.&amp;nbsp; For the most part, ASP.NET is the default handler for IIS.&amp;nbsp; If the ISAPI filter determines that the page request&amp;nbsp;is managed by WSS 2.0/SPS 2003, it forwards the&amp;nbsp;request to the SharePointHandler. 
&lt;P&gt;In contrast, the Virtual Path Provider is the component that handles the page request for WSS 3.0/MOSS 2007 environment.&amp;nbsp; Likewise, ASP.NET 2.0&amp;nbsp;retreives all page requests directly from IIS 6.0.&amp;nbsp; ASP.NET 2.0&amp;nbsp;determines if the page request is destined for a Web Application, In another posting, i will extend our discussions referencing the retreival of pages from the site definitions/site templates versus the database. 
&lt;P&gt;In short, the processing of page requests have had a major overhall.&amp;nbsp; In essence, the ISAPI fileter, found in WSS 2.0/SPS 2003, has been removed.&amp;nbsp; It is not used to intercept page requests in the WSS 3.0/MOSS 2007 environment.&lt;/P&gt;&lt;img src ="http://mindsharpblogs.com/driskell/aggbug/1678.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>