<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Notes from Commerce Support</title><subtitle type="html">Microsoft Commerce Server Support Team Blog</subtitle><id>http://blogs.msdn.com/b/commercesupport/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/b/commercesupport/atom.aspx" /><generator uri="http://telligent.com" version="5.6.50428.7875">Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><updated>2008-12-31T11:03:11Z</updated><entry><title>Commerce Server and the MSCS_CatalogScratch Database and Maintenance.</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2012/05/02/commerce-server-and-the-mscs-catalogscratch-database-and-maintenance.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2012/05/02/commerce-server-and-the-mscs-catalogscratch-database-and-maintenance.aspx</id><published>2012-05-02T15:47:00Z</published><updated>2012-05-02T15:47:00Z</updated><content type="html">&lt;p&gt;Thanks to Charles Teague for providing some of the technical detail for this article.    &lt;br /&gt;(Cross posted from &lt;a title="http://blogs.msdn.com/b/finbar_ryan/archive/2012/05/02/commerce-server-and-the-mscs-catalogscratch-database-and-maintenance.aspx" href="http://blogs.msdn.com/b/finbar_ryan/archive/2012/05/02/commerce-server-and-the-mscs-catalogscratch-database-and-maintenance.aspx"&gt;http://blogs.msdn.com/b/finbar_ryan/archive/2012/05/02/commerce-server-and-the-mscs-catalogscratch-database-and-maintenance.aspx&lt;/a&gt; )    &lt;br /&gt;    &lt;br /&gt;We’ll cover what the MSCS_CatalogScratch does in Commerce Server and how to maintain it either via VBScript or SQL Server Maintenance plans. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;1) What’s the Catalog Scratch Database?        &lt;br /&gt;        &lt;br /&gt;&lt;/u&gt;&lt;/strong&gt;The Catalog Scratch Database is a database used to store the results of the queries to the Catalog System in Commerce Server.     &lt;br /&gt;The majority of the stored procedures will generate a table in this database.     &lt;br /&gt;The runtime APIs (Search, SpecificationSearch, Query, GetProducts) use this database.     &lt;br /&gt;    &lt;br /&gt;The circumstances under which the Catalog Scratch database is created are detailed in the article below.     &lt;br /&gt;    &lt;br /&gt;948772&amp;#160;&amp;#160;&amp;#160; The CS Catalog Scratch (MSCS_CatalogScratch) database is created when you unpack your first site resource in Commerce Server 2007     &lt;br /&gt;&lt;a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;948772"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;948772&lt;/a&gt;     &lt;br /&gt;    &lt;br /&gt;This Catalog Scratch resource will be shared amongst your Catalog Resources if you have more than one.     &lt;br /&gt;    &lt;br /&gt;&lt;strong&gt;&lt;u&gt;2) Does the use of the Catalog Scratch database have any performance impact?        &lt;br /&gt;        &lt;br /&gt;&lt;/u&gt;&lt;/strong&gt;We discuss this in more detail in the following article.     &lt;br /&gt;    &lt;br /&gt;835984&amp;#160;&amp;#160;&amp;#160; Contention may occur if only one database file is used for the Commerce MSCS_CatalogScratch database     &lt;br /&gt;&lt;a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;835984"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;835984&lt;/a&gt;     &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;The general rule of thumb is to have as many data files as physical processors and to have the Trace Flag –1118 enabled in SQL Server.    &lt;br /&gt;    &lt;br /&gt;This helps to ensure you have the best concurrency for operations on this database.     &lt;br /&gt;    &lt;br /&gt;&lt;strong&gt;&lt;u&gt;3) How do we go about maintaining this database?        &lt;br /&gt;        &lt;br /&gt;&lt;/u&gt;&lt;/strong&gt;As we discussed above this database is like a scratch pad for the Catalog System queries.     &lt;br /&gt;The tables should be empty after the stored procedures have completed but you will still be left with the tables.     &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;So the general recommendation is to run the CatalogCleanup.vbs tool at least once a week as discussed at the following link.    &lt;br /&gt;    &lt;br /&gt;How to Delete Temporary Tables from the MSCS_CatalogScratch Database     &lt;br /&gt;&lt;a title="http://msdn.microsoft.com/en-us/library/bb520958(v=CS.70).aspx" href="http://msdn.microsoft.com/en-us/library/bb520958(v=CS.70).aspx"&gt;http://msdn.microsoft.com/en-us/library/bb520958(v=CS.70).aspx&lt;/a&gt;     &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;4) So, what does CatalogCleanup.vbs do?        &lt;br /&gt;        &lt;br /&gt;&lt;/u&gt;&lt;/strong&gt;If you opened CatalogCleanup.vbs in your favourite text editor you would see that it does 2 things.     &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;a) Check for the SQL connection string to a site Product Catalog database.&lt;/p&gt;  &lt;p&gt;b) Call the stored procedure ‘ctlg_DropPersistentTablesInScratchDB’ in the same database.    &lt;br /&gt;    &lt;br /&gt;There is also some error checking in place to handle errors.     &lt;br /&gt;    &lt;br /&gt;The next thing to note is that the stored procedure is passed in a parameter which defines it’s behaviour.     &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;Let’s look at that in more detail.    &lt;br /&gt;    &lt;br /&gt;The normal execution of the stored procedure would look like this. &lt;/p&gt;  &lt;p&gt;EXEC [dbo].[ctlg_DropPersistentTablesInScratchDB] @DropAll = 0&lt;/p&gt;  &lt;p&gt;GO&lt;/p&gt;  &lt;p&gt;The @DropAll parameter defines how the stored procedure removes the temporary tables.    &lt;br /&gt;It accepts either 0 or 1.     &lt;br /&gt;    &lt;br /&gt;If you pass 0 to the stored procedure then it will delete all temporary tables in the MSCS_CatalogScratch database the currently do not have any active SPIDs.     &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;When you use the value 1 for the parameter this tells the stored procedure to delete &lt;b&gt;all&lt;/b&gt; temporary tables in the MSCS_CatalogScratch database. If you use the value of 1 for the parameter then you need to be aware that this may cause the stored procedure to run for a long period of time while it tries to delete the tables. And running with the parameter value set to 1 may cause problems for any catalog functions that are actually using data in the temp tables in the MSCS_CatalogScratch and the table gets deleted in the middle of the catalog operation.     &lt;br /&gt;    &lt;br /&gt;So you can now run the CatalogCleanup.vbs script on the Commerce Server machine or add the stored procedure to your existing SQL Server maintenance plans.     &lt;br /&gt;    &lt;br /&gt;I hope this is useful.     &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10300009" width="1" height="1"&gt;</content><author><name>Finbar Ryan</name><uri>http://blogs.msdn.com/FinVamp1/ProfileUrlRedirect.ashx</uri></author><category term="Commerce Server 2007" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2007/" /><category term="Catalog" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Catalog/" /><category term="Commerce Server 2009" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2009/" /></entry><entry><title>Errors when trying to use Site Packager on IIS 7.0</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2010/05/25/errors-when-trying-to-use-site-packager-on-iis-7-0.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2010/05/25/errors-when-trying-to-use-site-packager-on-iis-7-0.aspx</id><published>2010-05-25T16:41:06Z</published><updated>2010-05-25T16:41:06Z</updated><content type="html">&lt;p&gt;When attempting to pack a site or unpack a site you may received errors or failures during the packing or unpacking process. This may be caused by various factors but I wanted to point out one cause that is new when using IIS 7.0.&lt;/p&gt;  &lt;p&gt;In IIS 7.0 you have the ability to configure a web site to only have an HTTPS binding. In previous versions of IIS you would always have at least one HTTP binding. If you have configured a web site on the Commerce Server machine with only a HTTPS binding then the site packager may fail because because the site packager is designed to read all IIS sites configured on the server and gather some basic information on each site. One of the items that we require is the non-secure binding information.&lt;/p&gt;  &lt;p&gt;If the site is configured to only have an HTTPS binding then the non-secure binding property will be NULL and will cause the site packager to fail.&lt;/p&gt;  &lt;p&gt;You can use the below .vbs script on your IIS / Commerce Server machine to read the same information the site packager will read and if the script fails then you can identify which IIS site is causing the issue.&lt;/p&gt;  &lt;p&gt;******&lt;/p&gt;  &lt;p&gt;'The code below simulates Commerce Server Site Packager checking IIS health.    &lt;br /&gt;'This IIS checking happens when you click the &amp;quot;next&amp;quot; button at the first dialog of the site unpacking.     &lt;br /&gt;'This code helps you to find out where the check is failing. &lt;/p&gt;  &lt;p&gt;set oNet=CreateObject(&amp;quot;WScript.Network&amp;quot;) &lt;/p&gt;  &lt;p&gt;sLocalMachine = oNet.ComputerName &lt;/p&gt;  &lt;p&gt;Set webServer = GetObject(&amp;quot;IIS://&amp;quot; &amp;amp; sLocalMachine &amp;amp; &amp;quot;/w3svc&amp;quot;) &lt;/p&gt;  &lt;p&gt;msgbox &amp;quot;Web Server &amp;quot;+ sLocalMachine +&amp;quot; has the following Web Sites:&amp;quot;    &lt;br /&gt;For Each webSite In webServer     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160; If IsNumeric(webSite.Name) Then &lt;/p&gt;  &lt;p&gt;&amp;#160;&amp;#160;&amp;#160; sName = webSite.Name    &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; sComment = webSite.ServerComment     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; sBind = webSite.ServerBindings     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; sAppPool = webSite.AppPoolId     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; msgbox &amp;quot;Web Instance Number: &amp;quot;+sName+&amp;quot; / &amp;quot;+&amp;quot;Web Site Name: &amp;quot;+sComment+&amp;quot; / &amp;quot;+&amp;quot; Binding: &amp;quot;+sBind(0)     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; msgbox sComment+&amp;quot;'s Application Pool: &amp;quot;+sAppPool     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; Set vroot = webSite.GetObject(&amp;quot;IIsWebVirtualDir&amp;quot;, &amp;quot;Root&amp;quot;)     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; msgbox sComment+&amp;quot;'s Root Directory: &amp;quot;+vroot.path     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160; End If     &lt;br /&gt;Next &lt;/p&gt;  &lt;p&gt;set onet=nothing    &lt;br /&gt;set webserver=nothing     &lt;br /&gt;set webSite=nothing     &lt;br /&gt;set vroot=nothing&lt;/p&gt;  &lt;p&gt;******&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10014841" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Commerce Server 2009 Documentation in .Chm format.</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2010/05/06/commerce-server-2009-documentation-in-chm-format.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2010/05/06/commerce-server-2009-documentation-in-chm-format.aspx</id><published>2010-05-06T08:26:00Z</published><updated>2010-05-06T08:26:00Z</updated><content type="html">&lt;P&gt;As you know the Commerce Server 2007 and Commerce Server 2009 help use the new Visual Studio Document Explorer format which means that it’s not as portable as the HTML Help format. &lt;BR&gt;&lt;BR&gt;I generally don’t have Commerce Server installed on my laptop (I know I should but I’ve got some VM’s I use instead!) , so if I need to check an API or deployment fact I generally go to MSDN or one of my virtual machines. &lt;BR&gt;&lt;BR&gt;Max had previously talked about this in his &lt;A href="http://blogs.msdn.com/maxakbar/archive/2007/04/30/did-you-ever-wanted-downloadable-help-file-for-commerce-server.aspx" mce_href="http://blogs.msdn.com/maxakbar/archive/2007/04/30/did-you-ever-wanted-downloadable-help-file-for-commerce-server.aspx"&gt;post&lt;/A&gt; and I thought a CS2009 version&amp;nbsp;would be good. &lt;BR&gt;&lt;BR&gt;So someone asked for a HTML Help version on one of our internal discussion aliases. &lt;BR&gt;&lt;BR&gt;To do this you can use the PackageThis tool from Codeplex &lt;A href="http://www.codeplex.com/packagethis" mce_href="http://www.codeplex.com/packagethis"&gt;http://www.codeplex.com/packagethis&lt;/A&gt;&amp;nbsp; &lt;BR&gt;&lt;BR&gt;It pulls down the documentation from MSDN and creates a HTML Help file for you. &lt;BR&gt;&lt;BR&gt;I’ve created a CHM file with all of the CS2009 Docs and uploaded it to a SkyDrive site. &lt;BR&gt;&lt;BR&gt;As the documentation can change I wanted to make sure everyone knows how to generate their own file if they need to. &lt;BR&gt;&lt;BR&gt;I’ve placed my copy up on my SkyDrive site.&lt;/P&gt;
&lt;P&gt;&lt;A title=http://cid-35c1d5410c4723e7.skydrive.live.com/self.aspx/CS2009Help/CS2009.zip href="http://cid-35c1d5410c4723e7.skydrive.live.com/self.aspx/CS2009Help/CS2009.zip" mce_href="http://cid-35c1d5410c4723e7.skydrive.live.com/self.aspx/CS2009Help/CS2009.zip"&gt;http://cid-35c1d5410c4723e7.skydrive.live.com/self.aspx/CS2009Help/CS2009.zip&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10008342" width="1" height="1"&gt;</content><author><name>Finbar Ryan</name><uri>http://blogs.msdn.com/FinVamp1/ProfileUrlRedirect.ashx</uri></author><category term="Commerce Server 2007" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2007/" /><category term="Commerce Server 2009" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2009/" /></entry><entry><title>How do you create a Commerce Server 2007 BizTalk Orchestration using your customized product catalog</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2010/04/16/how-do-you-create-a-commerce-server-2007-biztalk-orchestration-using-your-customized-catalog.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2010/04/16/how-do-you-create-a-commerce-server-2007-biztalk-orchestration-using-your-customized-catalog.aspx</id><published>2010-04-16T20:32:00Z</published><updated>2010-04-16T20:32:00Z</updated><content type="html">&lt;P&gt;Listed below are the steps you need to perform to successfully export your catalog to a directory.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;1. You will need to export your catalog schema using the Commerce Server Export Catalog tool&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a. Open a command prompt&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;b. Go to the Program Files\Microsoft Commerce Server 2007\Tools directory&lt;/P&gt;
&lt;P&gt;c. Enter the command “exportcatalog.exe /s:&amp;lt;site name&amp;gt; /w:&amp;lt;url to catalog web service&amp;gt; /Xsd DefaultCatalog.xsd&lt;/P&gt;
&lt;P&gt;d. You should see the specified (DefaultCatalog.xsd) file created successfully&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;2. Now you need to create a Message Schema containing your exported schema file (xsd)&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a. Copy the Program Files\Microsoft Commerce Server 2007\SDK\Samples\Adapters\MessageSchemas directory to a directory of your choice&lt;/P&gt;
&lt;P&gt;b. Open the Visual Studio solution&lt;/P&gt;
&lt;P&gt;c. Replace the original DefaultCatalog.xsd under the catalog folder with your DefaultCatalog.xsd file &lt;/P&gt;
&lt;P&gt;d. Ensure you provide an “Assembly Key File” to the project properties to build the Message Schema library&lt;/P&gt;
&lt;P&gt;e. Build the MessageSchemas file&lt;/P&gt;
&lt;P&gt;f. Deploy the MessageSchemas to BizTalk Server&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;3. Open the BizTalk Server Administrator to ensure that your MessageSchemas have successfully been deployed&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;4. Add the Microsoft.CommerceServer.Adapter.GlobalPropertySchemas.dll to your BizTalk Application&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a. Right-Click your BizTalk Application à Add à BizTalk Assembly&lt;/P&gt;
&lt;P&gt;b. Click the Add button&lt;/P&gt;
&lt;P&gt;c. Go to the Program Files\Microsoft Commerce Server 2007\BizTalk Adapters directory&lt;/P&gt;
&lt;P&gt;d. Select the Microsoft.CommerceServer.Adapter.GlobalPropertySchemas.dll file and click the Open button&lt;/P&gt;
&lt;P&gt;e. Select the “Add to the global assembly cache on add resource (gacutil)” option along with the “Add to the global assembly cache on MSI file install” option&lt;/P&gt;
&lt;P&gt;f. Click the OK button&lt;/P&gt;
&lt;P&gt;g. You can verify that it has been loaded successfully by examining the Schemas within the BizTalk Administrator&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;5. Now you need to create your BizTalk Orchestration project with Visual Studio&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a. Ensure that you add a reference to your MessageSchema file created in step 1&lt;/P&gt;
&lt;P&gt;b. Once again, ensure that you provide an “Assembly Key File” to build the file&lt;/P&gt;
&lt;P&gt;c. Successfully build and deploy your orchestration&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;6. Within the BizTalk Administrator, define the necessary Send and Receive Ports/Locations defining the Catalog Web service as the source for your Receive Port&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;7. Ensure that for the Send Port you provide a Filter (Property: BTS.ReceivePortName, Operator:&amp;nbsp; ==, Value: Name of your Receive Port)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;8. Enable/Start the Ports and Orchestration&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;9. Verify that your catalog export has been delivered to the location specified by the Send Port&lt;/STRONG&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9997452" width="1" height="1"&gt;</content><author><name>MIMUSH</name><uri>http://blogs.msdn.com/MIMUSH/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Commerce Server Version Numbers</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/11/25/commerce-server-version-numbers.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/11/25/commerce-server-version-numbers.aspx</id><published>2009-11-25T20:18:01Z</published><updated>2009-11-25T20:18:01Z</updated><content type="html">&lt;p&gt;I was asked recently by a customer what was the easiest way to determine what version of Commerce Server they have installed. There are many ways to check such as Control Panel…Add/Remove Programs with updates being shown, registry setting and in the &lt;em&gt;Help / About &lt;/em&gt;in Commerce Server Manager. Probably the easiest way to check and to be sure of the version is to use &lt;em&gt;Help / About Microsoft Commerce Server Manager&lt;/em&gt; in Commerce Server Manager or to check the value in the following registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Commerce Server 2007\Version.&lt;/p&gt;  &lt;p&gt;The version numbers match up like this:&lt;/p&gt;  &lt;table border="0" cellspacing="0" cellpadding="2" width="600"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="386"&gt;         &lt;p align="left"&gt;Commerce Server 2007&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="214"&gt;         &lt;p align="center"&gt;6.0.3724.0&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="386"&gt;         &lt;p align="left"&gt;Commerce Server 2007 with Service Pack 1&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="214"&gt;         &lt;p align="center"&gt;6.0.4036.0&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="386"&gt;         &lt;p align="left"&gt;Commerce Server 2007 with Service Pack 2&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="214"&gt;         &lt;p align="center"&gt;6.0.4109.0&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="386"&gt;         &lt;p align="left"&gt;Commerce Server 2009&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="214"&gt;         &lt;p align="center"&gt;6.0.4171.0&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="386"&gt;&amp;#160;&lt;/td&gt;        &lt;td valign="top" width="214"&gt;&amp;#160;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="386"&gt;&amp;#160;&lt;/td&gt;        &lt;td valign="top" width="214"&gt;&amp;#160;&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9928772" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Adjusting polling interval to the StagingLog.mdb</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/11/25/adjusting-polling-interval-to-the-staginglog-mdb.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/11/25/adjusting-polling-interval-to-the-staginglog-mdb.aspx</id><published>2009-11-25T19:45:00Z</published><updated>2009-11-25T19:45:00Z</updated><content type="html">&lt;P&gt;By default, in Commerce Server 2007 and Commerce Server 2009 the Commerce Staging System (CSS) will poll the StagingLog.mdb every 5 seconds.&amp;nbsp; Under normal circumstances this polling interval is not an issue but under an highly used CSS system the frequent polling may cause the service to crash. If you are running into the issue, you can increase the polling interval which may resolve the issue. &lt;/P&gt;
&lt;P&gt;To increase the polling interval you will need to edit the registry. First stop the service, make the registry modification and then restart the service.&lt;/P&gt;
&lt;P&gt;The registry key is: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\CSS\ProjectDeploymentLog\PollingInterval &lt;/P&gt;
&lt;P&gt;Default = 5000 (stored in milliseconds)&lt;/P&gt;
&lt;P&gt;A good recommendation on a value to use is somewhere between 30 seconds (30,000) and 60 seconds (60,000). Along with increasing the polling interval you can configure the CSS service to restart automatically by setting the recovery options to Restart the Service on failure.&lt;/P&gt;
&lt;P&gt;The issue causing the service to crash is being investigated further and as updates become available I will update this post.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9928752" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Configuring number of results in Catalog Manager search</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/11/06/configuring-number-of-results-in-catalog-manager-search.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/11/06/configuring-number-of-results-in-catalog-manager-search.aspx</id><published>2009-11-06T20:41:55Z</published><updated>2009-11-06T20:41:55Z</updated><content type="html">&lt;p&gt;In Catalog Manager, when you perform a search for a product, category, etc. by default the maximum number of results that will be returned is 500. You can alter the maximum number or results returned by making changes in the Catalog Web Service web.config file. In the web.config file you will find the notations on values for the property to change like this.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;font color="#008000"&gt;maxSearchResults:&amp;#160;&amp;#160;&amp;#160; (Optional)     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; Potential values include 0 (No limit) and all positive integers 1-2147483647      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; Disable Authorization Manager authorization.      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; WARNING: Removing this value could allow very large search results to consume server resources.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;You will edit the value in the section below. See bolded item.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;font color="#ff0000"&gt;&amp;lt;catalogWebService siteName=&amp;quot;AutoNation2&amp;quot; authorizationPolicyPath=&amp;quot;CatalogAuthorizationStore.xml&amp;quot; debugLevel=&amp;quot;Production&amp;quot; maxChunkSize=&amp;quot;1024&amp;quot; maxUploadFileSize=&amp;quot;2048000&amp;quot; timeOutHours=&amp;quot;24&amp;quot; enableInventorySystem=&amp;quot;true&amp;quot; disableAuthorization=&amp;quot;false&amp;quot; &lt;strong&gt;maxSearchResults=&amp;quot;500&amp;quot;&lt;/strong&gt;&amp;gt;      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;cache enable=&amp;quot;false&amp;quot; schemaTimeout=&amp;quot;5&amp;quot; itemInformationCacheTimeout=&amp;quot;5&amp;quot; itemHierarchyCacheTimeout=&amp;quot;5&amp;quot; itemRelationshipsCacheTimeout=&amp;quot;5&amp;quot; itemAssociationsCacheTimeout=&amp;quot;5&amp;quot; catalogCollectionCacheTimeout=&amp;quot;5&amp;quot;/&amp;gt;      &lt;br /&gt;&amp;lt;/catalogWebService&amp;gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;One note on altering the value. The notation on what value can be entered indicates that you can set the value to 0 so that all results will be returned. This is not correct for Commerce Server 2009. If you set it to 0 then the web service will fail with an exception that the property being set to a value of 0 is invalid. You will need to set a value to a positive integer as noted in the notation.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9918793" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Installing Commerce Server on Windows Server 2008 R2</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/10/02/installing-commerce-server-2009-on-windows-server-2008-r2.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/10/02/installing-commerce-server-2009-on-windows-server-2008-r2.aspx</id><published>2009-10-02T17:21:22Z</published><updated>2009-10-02T17:21:22Z</updated><content type="html">&lt;p&gt;Both Commerce Server 2007 and Commerce Server 2009 have been tested on Windows Server 2008 R2 and both are fully supported on this platform. However there are a few items that I wanted to review regarding either upgrading or installing either version of Commerce Server on this platform.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;For Commerce Server 2007, there are no issues with performing a new installation on Window Server 2008 R2. However, once the installation is complete and the configuration wizard has finished setting up the initial server databases you will need to install Commerce Server 2007 Service Pack 2 to be in a supported state. You will want to complete the service pack installation before you setup any Commerce sites on the server. If you are performing an operating system upgrade to an existing Commerce Server 2007 deployment, you should install Commerce Server 2007 Service Pack 2 and run the upgrade wizard against each Commerce site already deployed and verify that all site functionality prior to the operating system upgrade.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;For Commerce Server 2009, there is an additional step that will need to be performed prior to the installation. With the installation of Commerce Server 2009 CD2 it performs a check for .NET Framework 3.5 SP1 and does this check by looking for a registry key stating that it has been installed. With Windows Server 2008 R2 the framework is already built-in to the operating system and therefore the registry key showing that it has been installed is not present. There is an update that you will need to obtain to resolve the installation issue which can be found in Microsoft Knowledge Base Article 975567; &lt;a title="http://support.microsoft.com/default.aspx?scid=kb;EN-US;975567&amp;#13;&amp;#10;" href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;975567"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;975567.&lt;/a&gt;&amp;#160; You will want to obtain the update and run it against your server prior to the installation of either CD1 or CD2 of Commerce Server 2009. When you run the update it will perform a single check for the registry key and if present let you know that the update is not needed and do nothing, but if it is not present then it will add the registry entry and then exit. After the update is applied you can perform the installation of Commerce Server 2009 normally. If you are performing an operating system upgrade to a server that is already running Commerce Server 2009 there is no need to obtain the update as Commerce Server 2009 is already installed and the required components are already in place.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9902467" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Upgrading Commerce Server 2009 deployment on WSS to MOSS</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/09/30/upgrading-commerce-server-2009-deployment-on-wss-to-moss.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/09/30/upgrading-commerce-server-2009-deployment-on-wss-to-moss.aspx</id><published>2009-09-30T22:41:56Z</published><updated>2009-09-30T22:41:56Z</updated><content type="html">&lt;p&gt;If you have deployed any of the Commerce Server 2009 sample sites or your own custom site on a Windows SharePoint Services 3.0 based deployment, and then decide to upgrade that deployment to Office SharePoint Server 2007, your Commerce sites already deployed will cease to function correctly.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;This is because when you use the SharePoint Commerce Services Configuration Wizard to deploy the site, it will check to see if WSS or MOSS is deployed and based on what is deployed it will choose the appropriate WSP files to deploy for the site collection. There are different versions for WSS and MOSS.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;If you wish to upgrade an existing WSS deployment to MOSS you will need to back-up all of your site databases and site content, then remove the site in SharePoint Central Administration prior to performing the upgrade. Once the upgrade is complete you can deploy the appropriate site using the SharePoint Commerce Services Configuration Wizard and then merge any site customizations previously done into the new site.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9901469" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Cookie Sharing with Internet Explorer 8 and the Starter Site</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/06/09/cookie-sharing-with-internet-explorer-8-and-the-starter-site.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/06/09/cookie-sharing-with-internet-explorer-8-and-the-starter-site.aspx</id><published>2009-06-09T19:19:52Z</published><updated>2009-06-09T19:19:52Z</updated><content type="html">&lt;p&gt;With Commerce Server 2007 and 2009, if you are using a site based on the Core API such as the Starter Site, you can set the site to share cookie domain level at 2. If you have the web application non-secure hostname (for example: NonSecName.testsite.com) set to a different name than secure host name (for example: SecName.testsite.com, same testsite.com), the cookie sharing works correctly in Internet Explorer 6 and 7 but not in Internet Explorer 8.    &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;The symptom:   &lt;br /&gt;Anonymous user add items to cart, then switch the URL from the non-secure hostname to secure hostname by an action such as going to checkout, the items in the basket will disappear in Internet Explorer 8 for the same anonymous user.&lt;/p&gt;  &lt;p&gt;Resolution:   &lt;br /&gt;For code based on the Starter Site, modify the Starter Site code before you set the site_identity cookie, set Cookie.Domain= “testsite.com”.&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;(App_Code/SiteSecurity.cs)    &lt;br /&gt;________________________________________________________________    &lt;br /&gt;public static HttpCookie CreateUserCookie()    &lt;br /&gt;{    &lt;br /&gt;…    &lt;br /&gt;cookie.Value = CommerceContext.Current.UserID;    &lt;br /&gt;if (!isAnonymousUser)    &lt;br /&gt;{    &lt;br /&gt;cookie.Value += &amp;quot;/&amp;quot; + HashValue(userProfile.EmailAddress);    &lt;br /&gt;}    &lt;br /&gt;cookie.Domain = &amp;quot;testsite.com&amp;quot;;/*Jason: this is what I added*/    &lt;br /&gt;HttpContext.Current.Response.Cookies.Set(cookie);    &lt;br /&gt;…&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9716428" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Calculating the decimal degrees for Store Locator</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/04/23/calculating-the-decimal-degrees-for-store-locator.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/04/23/calculating-the-decimal-degrees-for-store-locator.aspx</id><published>2009-04-23T18:03:02Z</published><updated>2009-04-23T18:03:02Z</updated><content type="html">&lt;p&gt;When entering the store objects in Customer and Orders Manager for the Store Locator, you have the option to enter in the latitude and longitude of the store location. Traditionally latitude and longitude are shown in the following format of Degrees, Minutes, Seconds (35° 8' 18&amp;quot;). When entering the values for the store object they must be entered in what is called decimal degree format which will look something like 80.12345.&lt;/p&gt;  &lt;p&gt;To convert the latitude and longitude from the traditional format to decimal degrees you will need to use the below formula.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Decimal Degrees = Degrees + (Minutes / 60) + (Seconds / 3600)&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;For example, 35° 8' 18&amp;quot; would work out as 35 + (8/60) + (18/3600) = 35.13833.&lt;/p&gt;  &lt;table border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td width="597"&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;&lt;/tr&gt;      &lt;tr&gt;&lt;/tr&gt;      &lt;tr&gt;&lt;/tr&gt;      &lt;tr&gt;&lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9564907" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author><category term="Commerce Server 2009" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2009/" /></entry><entry><title>Commerce Server 2009 updates for _PresentationInfo.xml files in Profile Web Service</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/04/22/commerce-server-2009-updates-for-presentationinfo-xml-files-in-profile-web-service.aspx" /><link rel="enclosure" type="text/xml" length="14605" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-09-56-31-24/_5F00_PresentationInfoUpdates.xml" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/04/22/commerce-server-2009-updates-for-presentationinfo-xml-files-in-profile-web-service.aspx</id><published>2009-04-22T23:40:00Z</published><updated>2009-04-22T23:40:00Z</updated><content type="html">&lt;P&gt;In Commerce Server 2009 we have a new feature as part of the new default sites.&amp;nbsp; This is the Store Locator. The Store Locator provides the ability to have a user enter an address or zip code and find all of your store locations along with getting driving directions. Prior to using the Customer and Orders Manager to create your store objects and Virtual Earth configuration object you will need to update the &amp;lt;language&amp;gt;_PresentationInfo.xml files to include the needed profile object display information.&lt;/P&gt;
&lt;P&gt;In the Commerce Server 2009 Installation Guide we include the profile information that needs to be added but it is only for the English language. As Commerce Server 2009 includes support and &amp;lt;language&amp;gt;_PresentationInfo.xml files for English, German, French and Japanese you can take one of the following approaches to updating each file.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Use the English language profile information from the installation guide and place it in each &amp;lt;language&amp;gt;_PresentationInfo.xml file. This will permit the profile objects to be created successfully for each language supported but the text will be in English for all languages. &lt;/LI&gt;
&lt;LI&gt;Use the English language profile information from the installation guide and place it in the en_PresentationInfo.xml file. This will update the English language version of the file. For the other languages use the same profile content but manually translate and edit the displayName=”…” and description=”…” entry in each line to reflect the language of the selected _PresentationInfo.xml file. &lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;For those that choose to use option number 2 above, I’ve attached an XML file that has the profile information already translated for each language. The translation were done using online translation tools and some input from native speakers of German and French so the translations on some items may need to be reviewed prior to use. Just wanted to offer the information to help get you up and running as quickly as possible.&lt;/P&gt;&lt;/DISPLAYAREA&gt;&lt;/PROFILE&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9563124" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author><category term="Setup and Deployment" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Setup+and+Deployment/" /><category term="Commerce Server 2009" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2009/" /></entry><entry><title>Configure IIS web logs for Data Warehouse Authentication Module</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/04/16/configure-iis-web-logs-for-data-warehouse-authentication-module.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/04/16/configure-iis-web-logs-for-data-warehouse-authentication-module.aspx</id><published>2009-04-16T19:54:30Z</published><updated>2009-04-16T19:54:30Z</updated><content type="html">&lt;p&gt;When you setup a new site in Commerce Server 2009 using the SharePoint Commerce Services Configuration Wizard (SCSCW), it can be used to create the new web applications in both SharePoint and IIS. When you do this there is one additional step that you may need to take if you plan to use the Commerce Server Data Warehouse Authentication Module &amp;lt;CommerceDataWarehouseAuthenticationModule&amp;gt;.&lt;/p&gt;  &lt;p&gt;The IIS web applications that are created by the SCSCW may not have the necessary fields set to be logged in the IIS web log files. To correct this issue please verify that the following fields at a minimum are set to be recorded in the IIS web log files for both the NTLM and FBA sites.&lt;/p&gt;  &lt;table border="1" cellspacing="0" cellpadding="2" width="701"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="175"&gt;Date (date)&lt;/td&gt;        &lt;td valign="top" width="174"&gt;Time (time)&lt;/td&gt;        &lt;td valign="top" width="175"&gt;Client IP Address (c-ip)&lt;/td&gt;        &lt;td valign="top" width="175"&gt;User Name (cs-username)&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="175"&gt;Method (cs-method)&lt;/td&gt;        &lt;td valign="top" width="174"&gt;URI Stem (cs-uri-stem)&lt;/td&gt;        &lt;td valign="top" width="175"&gt;URI Query (cs-uri-query)&lt;/td&gt;        &lt;td valign="top" width="175"&gt;Cookie (cs(Cookie))&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="175"&gt;Host (cs-host)&lt;/td&gt;        &lt;td valign="top" width="174"&gt;Referer (cs(Referer))&lt;/td&gt;        &lt;td valign="top" width="175"&gt;User Agent (cs(User-Agent))&lt;/td&gt;        &lt;td valign="top" width="175"&gt;Win32 Status (sc-win32-status)&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="175"&gt;&amp;#160;&lt;/td&gt;        &lt;td valign="top" width="174"&gt;&amp;#160;&lt;/td&gt;        &lt;td valign="top" width="175"&gt;&amp;#160;&lt;/td&gt;        &lt;td valign="top" width="175"&gt;&amp;#160;&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9553158" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author><category term="Data Warehouse" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Data+Warehouse/" /><category term="Analytics" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Analytics/" /><category term="Setup and Deployment" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Setup+and+Deployment/" /><category term="Commerce Server 2009" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2009/" /><category term="SharePoint Commerce Services Configuration" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/SharePoint+Commerce+Services+Configuration/" /></entry><entry><title>FBA site fails to open correctly</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/04/16/fba-site-fails-to-open-correctly.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/04/16/fba-site-fails-to-open-correctly.aspx</id><published>2009-04-16T18:19:32Z</published><updated>2009-04-16T18:19:32Z</updated><content type="html">&lt;p&gt;When you configure the user account for the application pool that the Default Site or the Contemporary Site will use per the product installation guide, typically referred to as the RunTimeUser account, you may see an issue where the FBA site will not open correctly but the NTLM site opens fine. This is seen by the site map provider not rendering correctly and no product category data being seen. Other content that appears in the NTLM site may not be seen as well.&lt;/p&gt;  &lt;p&gt;There is a permission missing for ctlg_CatalogReaderRole on a stored procedure that can be corrected by running the script below on the product catalog database. &lt;/p&gt;  &lt;p&gt;&lt;font color="#ff0000"&gt;&lt;font color="#008000"&gt;/* Grant permission to ctlg_CatalogReaderRole */&lt;/font&gt;      &lt;br /&gt;Begin      &lt;br /&gt;GRANT EXECUTE ON [dbo].[ctlg_GetPropertyDefinitionLanguages] TO [ctlg_CatalogReaderRole]      &lt;br /&gt;End      &lt;br /&gt;GO&lt;/font&gt; &lt;/p&gt;  &lt;p&gt;Another option or workaround is to change which role permissions are granted to the RunTimeUser account on the product catalog database. &lt;/p&gt;  &lt;p&gt;By default the role permissions on the product catalog database are setup as:&lt;/p&gt;  &lt;table border="0" cellspacing="0" cellpadding="2" width="601"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="201"&gt;&lt;strong&gt;Database&lt;/strong&gt;&lt;/td&gt;        &lt;td valign="top" width="199"&gt;&lt;strong&gt;User Account&lt;/strong&gt;&lt;/td&gt;        &lt;td valign="top" width="199"&gt;&lt;strong&gt;Role Permission&lt;/strong&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="201"&gt;&amp;lt;site_name&amp;gt;_ProductCatalog&lt;/td&gt;        &lt;td valign="top" width="199"&gt; RunTimeUser&lt;/td&gt;        &lt;td valign="top" width="199"&gt;ctlg_catalogReaderRole         &lt;br /&gt;Inventory_RuntimeRole&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;If you use the following role permissions the issue will be resolved.   &lt;br /&gt;&lt;/p&gt;  &lt;table border="0" cellspacing="0" cellpadding="2" width="601"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="201"&gt;&lt;strong&gt;Database&lt;/strong&gt;&lt;/td&gt;        &lt;td valign="top" width="199"&gt;&lt;strong&gt;User Account&lt;/strong&gt;&lt;/td&gt;        &lt;td valign="top" width="199"&gt;&lt;strong&gt;Role Permission&lt;/strong&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="201"&gt;&amp;lt;site_name&amp;gt;_ProductCatalog&lt;/td&gt;        &lt;td valign="top" width="199"&gt; RunTimeUser&lt;/td&gt;        &lt;td valign="top" width="199"&gt;ctlg_catalogWriterRole         &lt;br /&gt;Inventory_RuntimeRole&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;This option will resolve the issue but is not ideal as it will grant the RunTimeUser greater permissions than it needs.&lt;/p&gt;  &lt;p&gt;If you would like a product update on this issue so that you do not need to perform these steps every time you deploy either the Default Site or the Contemporary Site in Commerce Server 2009 please contact Microsoft Commerce Server Support.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9553021" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Commerce Server 2009 Training Resources.</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/04/14/commerce-server-2009-training-resources.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/04/14/commerce-server-2009-training-resources.aspx</id><published>2009-04-14T18:59:34Z</published><updated>2009-04-14T18:59:34Z</updated><content type="html">&lt;p&gt;As Commerce Server 2009 is now out and available I thought it would be a nice idea to do a post on “Where Can I learn more about Commerce Server 2009?”.    &lt;br /&gt;    &lt;br /&gt;The first place to keep in your list would be the documentation that is available here.     &lt;br /&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/bb496797.aspx"&gt;Commerce Server 2009 Documentation&lt;/a&gt;     &lt;br /&gt;    &lt;br /&gt;Then you can take a look at the PDC Session from last year to give you an idea of the new features available in this product.     &lt;br /&gt;    &lt;br /&gt;&lt;a href="http://channel9.msdn.com/pdc2008/PC59/"&gt;Commerce Server “Mojave”&lt;/a&gt; (Mojave was the code name for this version of Commerce Server.)     &lt;br /&gt;    &lt;br /&gt;There is also a really good session from Scott Cairney from the Product Group over at Tech Ed Online with a Q and A.     &lt;br /&gt;    &lt;br /&gt;There’s no direct link unfortunately but you can go to &lt;a href="http://msdn.microsoft.com/en-us/events/teched/cc676818.aspx"&gt;Tech Talks&lt;/a&gt; at Tech Ed Online and search for “Commerce Server” and you’ll find this video and a choice of download formats.     &lt;br /&gt;    &lt;br /&gt;One of the really nice new features in Commerce Server 2009 is the ability to integrate with Virtual Earth to build a Store Locator page.     &lt;br /&gt;    &lt;br /&gt;Tom Schultz has a Web Cast that’s up on Channel 9. &lt;a href="http://channel9.msdn.com/posts/tschultz/Commerce-Server-2009-Web-Cast-Using-Store-Locator-Web-Part/"&gt;Channel 9 Store Locator Webcast&lt;/a&gt;.     &lt;br /&gt;    &lt;br /&gt;If you’d like to feed back to Tom about this Webcast then he has a &lt;a href="http://blogs.msdn.com/tschultz/archive/2009/03/15/commerce-server-2009-web-cast-using-store-locator-web-part.aspx"&gt;permalink&lt;/a&gt; over on his blog.     &lt;br /&gt;    &lt;br /&gt;There is also a lot of sample code at &lt;a href="http://code.msdn.microsoft.com/CS2K9Samples"&gt;Multi-Channel Foundation Samples&lt;/a&gt; that will show you how to use the new API’s.     &lt;br /&gt;    &lt;br /&gt;Finally if you’re a Commerce Server Partner we have the following sessions over at Partner Academy Live.&lt;/p&gt;  &lt;table border="0" cellspacing="3" cellpadding="0"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td&gt;         &lt;p&gt;PAL sessions:&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;table border="0" cellspacing="3" cellpadding="0"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td&gt;         &lt;table border="0" cellspacing="3" cellpadding="0" width="364"&gt;&lt;tbody&gt;             &lt;tr&gt;               &lt;td valign="top"&gt;                 &lt;p&gt;&lt;a href="https://partner.microsoft.com/global/productssolutions/servers/40100684"&gt;Microsoft Commerce Server 2009: Trends, Sales Strategies, and Solutions&lt;/a&gt;&lt;/p&gt;               &lt;/td&gt;             &lt;/tr&gt;           &lt;/tbody&gt;&lt;/table&gt;          &lt;table border="0" cellspacing="3" cellpadding="0" width="295"&gt;&lt;tbody&gt;             &lt;tr&gt;               &lt;td valign="top"&gt;                 &lt;p&gt;&lt;a href="https://partner.microsoft.com/global/productssolutions/servers/40100685"&gt;The New Microsoft Commerce Server 2009 Product Release&lt;/a&gt;&lt;/p&gt;               &lt;/td&gt;             &lt;/tr&gt;           &lt;/tbody&gt;&lt;/table&gt;       &lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9548670" width="1" height="1"&gt;</content><author><name>Finbar Ryan</name><uri>http://blogs.msdn.com/FinVamp1/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>How to setup Site Variations for the Commerce Server 2009 sites</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/03/17/how-to-setup-site-variations-for-the-default-site.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/03/17/how-to-setup-site-variations-for-the-default-site.aspx</id><published>2009-03-18T00:24:00Z</published><updated>2009-03-18T00:24:00Z</updated><content type="html">&lt;P&gt;The steps to setup and configure&amp;nbsp;site variations in the Commerce Server 2009 Default Site and the Contemporary Site have been worked over several times here and instead of having a 10 page long post on the topic, we have published new documentation to&amp;nbsp;cover the steps on setting up such a configuration.&amp;nbsp;You can download the document by selecting the Download link below.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://download.microsoft.com/download/A/6/0/A6007A9B-E684-4DDF-A765-04FD73A1C158/CS2009SiteVariation.doc" mce_href="http://download.microsoft.com/download/A/6/0/A6007A9B-E684-4DDF-A765-04FD73A1C158/CS2009SiteVariation.doc"&gt;Download&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Enjoy&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9484835" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author><category term="Setup and Deployment" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Setup+and+Deployment/" /><category term="Commerce Server 2009" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2009/" /><category term="SharePoint Commerce Services Configuration" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/SharePoint+Commerce+Services+Configuration/" /><category term="SharePoint Integration" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/SharePoint+Integration/" /></entry><entry><title>Commerce Server Terms and Definitions</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/03/12/commerce-server-terms-and-definitions.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/03/12/commerce-server-terms-and-definitions.aspx</id><published>2009-03-12T22:38:36Z</published><updated>2009-03-12T22:38:36Z</updated><content type="html">&lt;p&gt;As there have been question in the past on the terms and definitions used by Commerce Server, a while back we published a list in the Commerce Server 2002 time frame outlining the meanings to the terms and definitions. I thought it might be a good idea to re-visit this topic and update them to reflect the current product usage.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;b&gt;Commerce Server Site:&lt;/b&gt; A Commerce Server site is a collection of site resources and ASP or ASP.NET-based applications that use these resources through the Commerce Server object model. With a Commerce Server site, you can administer the applications in the site as a group.&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;&lt;b&gt;&lt;i&gt;Note: &lt;/i&gt;&lt;/b&gt;A Commerce Server site is not the same thing as the concept of a Web site in Microsoft Internet Information Services (IIS).&lt;/li&gt;   &lt;/ul&gt;    &lt;li&gt;&lt;b&gt;Commerce Server Resource:&lt;/b&gt; A Commerce Server resource adds functionality to the applications in a Commerce Server site. You can use the Commerce Server Manager to configure properties in a Commerce Server resource. Resources are either site resources or global resources. Global resources can be shared across Commerce Server sites. Site resources cannot be shared across Commerce Server sites. For example, the Product Catalog resource is a site resource and the Data Warehouse resource is a global resource.&lt;/li&gt;    &lt;li&gt;&lt;b&gt;Commerce Server Application:&lt;/b&gt; A Commerce Server application is a logical representation of an application in IIS. The Commerce Server application appears in both the Commerce Server Manager and in IIS Manager Console trees. In the IIS console tree, a Commerce Server application is either at the root directory level of the Web site or at a sub-directory or virtual directory level of the web site.&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;A Commerce Server application may be one of the following:&lt;/li&gt;      &lt;ul&gt;       &lt;li&gt;A web service application such as the Catalog Web Service&lt;/li&gt;        &lt;li&gt;A web site application&lt;/li&gt;     &lt;/ul&gt;   &lt;/ul&gt;    &lt;li&gt;&lt;b&gt;Commerce Server deployment:&lt;/b&gt; A Commerce Server deployment is made up of one or more physical installations of Commerce Server that are directed to or share a single Commerce Server administrative database (MSCS_Admin Database). All Commerce Server sites that share a common MSCS_Admin database make up a single Commerce Server deployment.&lt;/li&gt;    &lt;li&gt;&lt;b&gt;Web server:&lt;/b&gt; In Commerce Server, a Web server is a computer that has IIS installed. The Web server contains the virtual directories, the files, and the subfolders for a Commerce site. A Commerce deployment can have multiple Web servers that together form a Web farm.&lt;/li&gt;    &lt;li&gt;&lt;b&gt;IIS-based Web site:&lt;/b&gt; An Internet Information Services-based Web site runs on a specific TCP port number. For example, by default, the &amp;quot;Default Web Site&amp;quot; or &amp;quot;Administration&amp;quot; web site.&lt;/li&gt; &lt;/ul&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9472112" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Commerce Server 2009 Quick Installation Steps for Developers</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/03/12/commerce-server-2009-quick-installation-steps-for-developers.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/03/12/commerce-server-2009-quick-installation-steps-for-developers.aspx</id><published>2009-03-12T22:38:00Z</published><updated>2009-03-12T22:38:00Z</updated><content type="html">&lt;P&gt;The following quick installation instructions are for developers who already have a Commerce Server 2007 installation up and running and want to upgrade to Commerce Server 2009.&lt;/P&gt;
&lt;P&gt;This post will walk you thru the required installation steps to get the sample Sharepoint DefaultSite working. It assumes you are running Commerce Server 2007 Standard or Enterprise editions on Windows Server 2008 and that you have a service account named servername\runtimeuser which is part of the local Administrators group, IIS_IUSRS group, and is a sysadmin on your SQL 2008/SQL 2005 machine.&lt;/P&gt;
&lt;P&gt;The first thing that needs to be decided is whether you want to install WSS or MOSS.&lt;/P&gt;
&lt;P&gt;If you are using WSS: &lt;/P&gt;
&lt;P&gt;a.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WSS 3.0 with SP1; for the 32-bit version see &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139486" mce_href="http://go.microsoft.com/fwlink/?LinkId=139486"&gt;http://go.microsoft.com/fwlink/?LinkId=139486&lt;/A&gt;; for the 64-bit version see &lt;U&gt;&amp;lt;&lt;/U&gt;&lt;A href="http://go.microsoft.com/fwlink/?LinkId=139487" mce_href="http://go.microsoft.com/fwlink/?LinkId=139487"&gt;http://go.microsoft.com/fwlink/?LinkId=139487&lt;/A&gt;&lt;U&gt;&amp;gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Note &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;You must perform a custom installation of WSS, not a basic installation.&amp;nbsp; Also choose the web frontend option when asked to.&lt;/P&gt;
&lt;P&gt;b.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WSS 3.0 December Cumulative Update &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://support.microsoft.com/kb/961755/"&gt;http://support.microsoft.com/kb/961755/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If using MOSS:&lt;/P&gt;
&lt;P&gt;a.&amp;nbsp;&amp;nbsp;&amp;nbsp; MOSS 2007 SP1 (&lt;U&gt;&amp;lt;&lt;/U&gt;&lt;A href="http://go.microsoft.com/fwlink/?LinkId=130488" mce_href="http://go.microsoft.com/fwlink/?LinkId=130488"&gt;http://go.microsoft.com/fwlink/?LinkId=130488&lt;/A&gt;&lt;U&gt;&amp;gt;&lt;/U&gt;)&lt;/P&gt;
&lt;P&gt;c.&amp;nbsp;&amp;nbsp;&amp;nbsp; Install the December Cumulative Updates for &lt;B&gt;both&lt;/B&gt; WSS 3.0 and MOSS 2007&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://support.microsoft.com/kb/961755/"&gt;http://support.microsoft.com/kb/961755/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://support.microsoft.com/kb/961756/"&gt;http://support.microsoft.com/kb/961756/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The Sharepoint products and technologies configuration wizard should run after each cumulative update install. &lt;/P&gt;
&lt;P&gt;We should now be ready to run the Commerce Server 2009 setup. The setup.exe is located on CD2 of the Commerce 2009 media.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image001_2.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image001_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image001 border=0 alt=clip_image001 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image001_thumb.gif" width=566 height=465 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image001_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;During the setup near the end of the process&amp;nbsp;it&amp;nbsp;will launch the Microsoft Commerce Server Configuration Wizard, same as Commerce Server 2007.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image002_2.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image002_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image002 border=0 alt=clip_image002 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image002_thumb.gif" width=590 height=465 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image002_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;After running the Configuration wizard the Commerce Server 2009 Upgrade wizard should launch.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Be sure to migrate your site resources otherwise your old sites won't work!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image004_2.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image004_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image004 border=0 alt=clip_image004 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image004_thumb.gif" width=551 height=419 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image004_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Once installation is completed you&amp;nbsp;may need to reboot.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Setting up your DefaultSite is as simple as running a wizard.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Go ahead and launch the Microsoft SharePoint Commerce Services Configuration Wizard&lt;/P&gt;
&lt;P&gt;A dependency check will run and you will want to make sure everything checks out ok then click next. &lt;BR&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image005_2.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image005_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image005 border=0 alt=clip_image005 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image005_thumb.gif" width=452 height=500 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image005_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Next you want to select Commerce SharePoint Default Web Site and Web Parts as your deployment option.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image006_2.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image006_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image006 border=0 alt=clip_image006 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image006_thumb.gif" width=624 height=474 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image006_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Now you want to select your Web Application. Go ahead and click the ... to create a new web application.&lt;/P&gt;
&lt;P&gt;So you will now give a description and port for 2 IIS Sharepoint web sites to be created. &lt;/P&gt;
&lt;P&gt;IIS Web Site will be a NTLM site used to edit/administer your site. &lt;/P&gt;
&lt;P&gt;Extended IIS Web Site will be the actual web site that your customers will go to. &lt;/P&gt;
&lt;P&gt;Go ahead and create a new application pool using servername\runtimeuser as the identity. &lt;/P&gt;
&lt;P&gt;Once you click next the wizard will go ahead and create your 2 IIS Sharepoint sites and your application pool. It will configure all the authentication for you.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image007_2.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image007_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image007 border=0 alt=clip_image007 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image007_thumb.gif" width=453 height=501 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image007_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You will now be brought back to the following screen.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image008_2.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image008_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image008 border=0 alt=clip_image008 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image008_thumb.gif" width=447 height=494 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image008_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;· Go ahead and select the web application you just created from the drop down.&lt;/P&gt;
&lt;P&gt;· Verify that Create Commerce Site is checked.&lt;/P&gt;
&lt;P&gt;· Modify your site name and description if you want to change it.&lt;/P&gt;
&lt;P&gt;· Select Unpack Commerce Server Site (with sample data).&lt;/P&gt;
&lt;P&gt;· Enter the name of your database server&lt;/P&gt;
&lt;P&gt;Go ahead and click next, then confirm your selections on the next screen. &lt;/P&gt;
&lt;P&gt;The wizard will go ahead and unpup the microsoftcommercedefaultsitewithsampledata.pup and create a new commerce site and setup the Commerce site.&lt;/P&gt;
&lt;P&gt;You will now want to unpackage the&amp;nbsp;web services&amp;nbsp;from microsoftcommercedefaultsitewithsampledata.pup manually. This is located at \Program Files (x86)\Microsoft Commerce Server 2007\Microsoft Commerce Server 2009\Site.&lt;/P&gt;
&lt;P&gt;Next you will want to go ahead and perform the normal post-deployment procedures.&lt;/P&gt;
&lt;P&gt;Verify that your servername\runtimeuser has write permissions on the catalogauthorizationstore.xml&lt;/P&gt;
&lt;P&gt;Setup your azman.msc permissions for you business user applications.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image010_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image010_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image010 border=0 alt=clip_image010 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image010_thumb.jpg" width=874 height=319 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image010_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Use the following steps to create a Commerce Server user who owns the Default Site, and tie Commerce Server users to the SharePoint registered users group. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image011_3.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image011_3.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image011 border=0 alt=clip_image011 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image011_thumb.gif" width=28 height=22 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image011_thumb.gif"&gt;&lt;/A&gt;To configure permissions for authenticated users 
&lt;TABLE border=0 cellSpacing=0 cellPadding=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=600&gt;
&lt;P&gt;1. Open Customer and Orders Manager.&lt;/P&gt;
&lt;P&gt;2. Create a new Commerce Server user profile that you will use as an Administrator for the forms-based authentication (FBA) zone of the Default site. &lt;/P&gt;
&lt;P&gt;3. In Internet Explorer, access the main zone of the Default Site. &lt;/P&gt;
&lt;P&gt;4. Click Site Action, click Site Settings, and then click People and Groups.&lt;/P&gt;
&lt;P&gt;5. Under groups, click &amp;lt;site_name&amp;gt; Owners&lt;/P&gt;
&lt;P&gt;6. Click New.&lt;/P&gt;
&lt;P&gt;7. In the Add Users screen, in Users/Groups, type name of commerce server user created in step 1.&lt;/P&gt;
&lt;P&gt;8. In left menu, under Groups, click More.&lt;/P&gt;
&lt;P&gt;9. Click Registered Users.&lt;/P&gt;
&lt;P&gt;10. Click New.&lt;/P&gt;
&lt;P&gt;11. In the Add Users screen, in Users/Groups, type SignedInClient as the value.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;H5&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image013_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image013_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image013 border=0 alt=clip_image013 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image013_thumb.jpg" width=840 height=422 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image013_thumb.jpg"&gt;&lt;/A&gt;&lt;/H5&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image011%5B1%5D.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image011%5B1%5D.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image011[1] border=0 alt=clip_image011[1] src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image011%5B1%5D_thumb.gif" width=28 height=22 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image011%5B1%5D_thumb.gif"&gt;&lt;/A&gt;To specify the Default Web site channel and catalog names 
&lt;TABLE border=0 cellSpacing=0 cellPadding=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=600&gt;
&lt;P&gt;1. Log on to the operating system under a user account that has administrative privileges in SharePoint for the site collection where the Default Web site was deployed.&lt;/P&gt;
&lt;P&gt;2. In your browser, navigate to the Default Web site. The URL is as follows:&lt;/P&gt;
&lt;P&gt;http://&amp;lt;host&amp;gt;:&amp;lt;port&amp;gt;/Pages/default.aspx&lt;/P&gt;
&lt;P&gt;3. Click Site Actions, and then click View All Site Content.&lt;/P&gt;
&lt;P&gt;4. Under Lists, click Channel Configuration.&lt;/P&gt;
&lt;P&gt;5. In the list, click Channel, and then click Edit item.&lt;/P&gt;
&lt;P&gt;6. In the Value box, type Default, and then click OK. You must type the value exactly as it appears here.&lt;/P&gt;
&lt;P&gt;7. In the list, click Default Catalog, and then click Edit item.&lt;/P&gt;
&lt;P&gt;8. In the Value box, type Adventure Works Catalog, and then click OK. &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image015_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image015_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image015 border=0 alt=clip_image015 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image015_thumb.jpg" width=784 height=381 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/clip_image015_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Your Commerce 2009 Sample Site should now be up and running. Go ahead to IIS and browse the site!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/image_2.png" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/image_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/image_thumb.png" width=1060 height=454 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/CommerceServer2009QuickInstallationSteps_10358/image_thumb.png"&gt;&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9472111" width="1" height="1"&gt;</content><author><name>gcheng75</name><uri>http://blogs.msdn.com/gcheng75/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Clarifications, Comments &amp; Corrections to the Commerce Server 2009 Installation Guide</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/03/04/clarifications-comments-corrections-to-the-commerce-server-2009-installation-guide.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/03/04/clarifications-comments-corrections-to-the-commerce-server-2009-installation-guide.aspx</id><published>2009-03-04T23:33:00Z</published><updated>2009-03-04T23:33:00Z</updated><content type="html">&lt;P&gt;The Commerce Server 2009 Installation guide is a large document covering the setup and deployment of Commerce Server 2009. Although great effort went into making sure we covered all the aspects of setting up Commerce Server 2009 some things in the document may have been missed, stated incorrectly or just need a bit more clarification. In this post I will try to make clear any sections of the installation guide so that you can complete your tasks efficiently.&lt;/P&gt;
&lt;P&gt;For the latest revision of the Commerce Server 2009 Installation Guide please download it from here: &lt;/P&gt;
&lt;P&gt;&lt;A href="http://download.microsoft.com/download/5/B/E/5BE19F83-EC42-41EE-8A21-B70222247DB8/CS2009Installation.doc" mce_href="http://download.microsoft.com/download/5/B/E/5BE19F83-EC42-41EE-8A21-B70222247DB8/CS2009Installation.doc"&gt;http://download.microsoft.com/download/5/B/E/5BE19F83-EC42-41EE-8A21-B70222247DB8/CS2009Installation.doc&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;On page 26 you will find the following:&lt;/P&gt;
&lt;P&gt;8.&amp;nbsp;&amp;nbsp; (Optional) If you plan to use the Data Warehouse in Commerce Server 2009 with SQL Server 2008, you must install the following, in the order listed:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a.&amp;nbsp;&amp;nbsp; Microsoft SQL Server Native Client. See &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139308" mce_href="http://go.microsoft.com/fwlink/?LinkId=139308"&gt;http://go.microsoft.com/fwlink/?LinkId=139308&lt;/A&gt;.&amp;nbsp; &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;b.&amp;nbsp;&amp;nbsp; Microsoft SQL Server 2005 Management Objects Collection. See &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139309" mce_href="http://go.microsoft.com/fwlink/?LinkId=139309"&gt;http://go.microsoft.com/fwlink/?LinkId=139309&lt;/A&gt;. &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;c.&amp;nbsp;&amp;nbsp; Microsoft ADOMD.NET. See &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139310" mce_href="http://go.microsoft.com/fwlink/?LinkId=139310"&gt;http://go.microsoft.com/fwlink/?LinkId=139310&lt;/A&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;d.&amp;nbsp;&amp;nbsp; Microsoft SQL Server 2005 Backward Compatibility Components. See &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139311" mce_href="http://go.microsoft.com/fwlink/?LinkId=139311"&gt;http://go.microsoft.com/fwlink/?LinkId=139311&lt;/A&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;e.&amp;nbsp;&amp;nbsp; Microsoft SQL Server 2005 December 2008 Feature Pack. See &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139312" mce_href="http://go.microsoft.com/fwlink/?LinkId=139312"&gt;http://go.microsoft.com/fwlink/?LinkId=139312&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This step is better explained by the following:&lt;/P&gt;
&lt;P&gt;8.&amp;nbsp;&amp;nbsp; (Optional) If you plan to use the Data Warehouse features in Commerce Server 2009 with SQL Server 2008, you must install the following items from the Microsoft SQL Server 2005 December 2008 Feature Pack, in the order listed below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The Microsoft SQL Server 2005 December 2008 Feature Pack can be found at &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139312" mce_href="http://go.microsoft.com/fwlink/?LinkId=139312"&gt;http://go.microsoft.com/fwlink/?LinkId=139312&lt;/A&gt;. Be sure to select the appropriate version for each item if you are running on an x86 platform or an x64 platform.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a.&amp;nbsp;&amp;nbsp; Microsoft SQL Server Native Client&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;b.&amp;nbsp;&amp;nbsp; Microsoft SQL Server 2005 Management Objects Collection&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;c.&amp;nbsp;&amp;nbsp; Microsoft ADOMD.NET&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;d.&amp;nbsp;&amp;nbsp; Microsoft SQL Server 2005 Backward Compatibility Components&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;==================================================================================================&lt;/P&gt;
&lt;P&gt;On page 27 you will find the following:&lt;/P&gt;
&lt;P&gt;13. To install WSS or MOSS, click the links below for instructions and information about the relevant updates.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;If using WSS: &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a. WSS 3.0 with SP1; for the 32-bit version see &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139486" mce_href="http://go.microsoft.com/fwlink/?LinkId=139486"&gt;http://go.microsoft.com/fwlink/?LinkId=139486&lt;/A&gt;; for the 64-bit version see &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139487" mce_href="http://go.microsoft.com/fwlink/?LinkId=139487"&gt;http://go.microsoft.com/fwlink/?LinkId=139487&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001_2.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001_2.gif"&gt;&lt;IMG style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px" height=22 alt=clip_image001 src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001_thumb.gif" width=28 border=0 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001_thumb.gif"&gt;&lt;/A&gt;Note &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;You must perform a custom installation of WSS, not a basic installation. &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;b. WSS 3.0 December Cumulative Update (&lt;A href="http://go.microsoft.com/fwlink/?LinkId=139489" mce_href="http://go.microsoft.com/fwlink/?LinkId=139489"&gt;http://go.microsoft.com/fwlink/?LinkId=139489&lt;/A&gt;)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;If using MOSS:&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a. MOSS 2007 (For information about licensing and pricing for MOSS 2007, see &lt;A href="http://go.microsoft.com/fwlink/?LinkId=142244" mce_href="http://go.microsoft.com/fwlink/?LinkId=142244"&gt;http://go.microsoft.com/fwlink/?LinkId=142244&lt;/A&gt;)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;b. MOSS 2007 SP1 (&lt;A href="http://go.microsoft.com/fwlink/?LinkId=130488" mce_href="http://go.microsoft.com/fwlink/?LinkId=130488"&gt;http://go.microsoft.com/fwlink/?LinkId=130488&lt;/A&gt;)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;c. December Cumulative Update for both WSS 3.0 and MOSS 2007 (&lt;A href="http://go.microsoft.com/fwlink/?LinkId=139489" mce_href="http://go.microsoft.com/fwlink/?LinkId=139489"&gt;http://go.microsoft.com/fwlink/?LinkId=139489&lt;/A&gt;)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This step is better explained by the following:&lt;/P&gt;
&lt;P&gt;13. Determine if you will be using Windows SharePoint Services 3.0 (WSS) or Microsoft Office SharePoint Server 2007 (MOSS). If you will be using Windows SharePoint Services 3.0 follow the steps in the section "If using WSS:". If you will be using Microsoft Office SharePoint Server 2007 then follow the steps in the section "If using MOSS:".&lt;/P&gt;
&lt;P&gt;To install WSS or MOSS, click the links below for instructions and information about the relevant updates.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;If using WSS: &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a. Install WSS 3.0 with SP1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; For the 32-bit version see &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139486" mce_href="http://go.microsoft.com/fwlink/?LinkId=139486"&gt;http://go.microsoft.com/fwlink/?LinkId=139486&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; For the 64-bit version see &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139487" mce_href="http://go.microsoft.com/fwlink/?LinkId=139487"&gt;http://go.microsoft.com/fwlink/?LinkId=139487&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B4%5D.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B4%5D.gif"&gt;&lt;IMG style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px" height=22 alt=clip_image001[4] src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B4%5D_thumb.gif" width=28 border=0 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B4%5D_thumb.gif"&gt;&lt;/A&gt;Note: You must perform a custom installation of WSS, not a basic installation. After selecting to perform a custom installation you will need to select the option Web Frontend.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;b. December Cumulative Update for Windows SharePoint Services 3.0. See &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139489" mce_href="http://go.microsoft.com/fwlink/?LinkId=139489"&gt;http://go.microsoft.com/fwlink/?LinkId=139489&lt;/A&gt;. When selecting the download be sure to select the appropriate x86 or x64 platform for your installation.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;If using MOSS:&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;a. Install MOSS 2007 (For information about licensing and pricing for MOSS 2007, see &lt;A href="http://go.microsoft.com/fwlink/?LinkId=142244" mce_href="http://go.microsoft.com/fwlink/?LinkId=142244"&gt;http://go.microsoft.com/fwlink/?LinkId=142244&lt;/A&gt;)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;b. Install MOSS 2007 SP1. See &lt;A href="http://go.microsoft.com/fwlink/?LinkId=130488" mce_href="http://go.microsoft.com/fwlink/?LinkId=130488"&gt;http://go.microsoft.com/fwlink/?LinkId=130488&lt;/A&gt;. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B4%5D.gif" mce_href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B4%5D.gif"&gt;&lt;IMG style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px" height=22 alt=clip_image001[4] src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B4%5D_thumb.gif" width=28 border=0 mce_src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B4%5D_thumb.gif"&gt;&lt;/A&gt;Note: If you installed the slipstreamed version of MOSS 2007 with SP1 already included then this step can be skipped.&lt;/P&gt;
&lt;P&gt;c. December Cumulative Update for Windows SharePoint Services 3.0. See &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139489" mce_href="http://go.microsoft.com/fwlink/?LinkId=139489"&gt;http://go.microsoft.com/fwlink/?LinkId=139489&lt;/A&gt;. When selecting the download be sure to select the appropriate x86 or x64 platform for your installation.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;d. December Cumulative Update for Microsoft Office Servers. See &lt;A href="http://go.microsoft.com/fwlink/?LinkId=139489" mce_href="http://go.microsoft.com/fwlink/?LinkId=139489"&gt;http://go.microsoft.com/fwlink/?LinkId=139489&lt;/A&gt;. When selecting the download be sure to select the appropriate x86 or x64 platform for your installation.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;==================================================================================================&lt;/P&gt;
&lt;P&gt;On page 119 you will find the following:&lt;/P&gt;
&lt;H2&gt;Specifying the Default Site Channel and Catalog Names&lt;/H2&gt;
&lt;P&gt;Use the following instructions to specify the Default Web site channel and catalog names. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B3%5D.gif"&gt;&lt;IMG style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px" height=22 alt=clip_image001[3] src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B3%5D_thumb.gif" width=28 border=0&gt;&lt;/A&gt;&lt;STRONG&gt;To specify the Default Web site channel and catalog names&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;1. Log on to the operating system under a user account that has administrative privileges in SharePoint for the site collection where the Default Web site was deployed.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;2. In your browser, navigate to the Default Web site. The URL is as follows:&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;http://&amp;lt;host&amp;gt;:&amp;lt;port&amp;gt;/Pages/default.aspx&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;3. Click &lt;STRONG&gt;Site Actions&lt;/STRONG&gt;, and then click &lt;STRONG&gt;View All Site Content&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;4. Under &lt;STRONG&gt;Lists&lt;/STRONG&gt;, click &lt;STRONG&gt;Channel Configuration&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;5. In the list, click &lt;STRONG&gt;Channel&lt;/STRONG&gt;, and then click &lt;STRONG&gt;Edit item&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;6. In the &lt;STRONG&gt;Value&lt;/STRONG&gt; box, type &lt;STRONG&gt;Default&lt;/STRONG&gt;, and then click &lt;STRONG&gt;OK&lt;/STRONG&gt;. You must type the value exactly as it appears here.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;7. In the list, click &lt;STRONG&gt;Default Catalog&lt;/STRONG&gt;, and then click &lt;STRONG&gt;Edit item&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;8. In the Value box, type one of the following:&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· If you unpacked the Commerce Site with sample data, type &lt;STRONG&gt;Adventure Works Catalog&lt;/STRONG&gt;, and then click &lt;STRONG&gt;OK&lt;/STRONG&gt;. You must type the value exactly as it appears here.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· If you unpacked only the schema of the Commerce Site (no sample data), type the name of your catalog, and then click &lt;STRONG&gt;OK&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;9. Go back to the URL of the Default Web site. &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The site now displays the Web Parts.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;10. Navigate to the Category page of the Default Site. The URL is as follows:&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;http://&amp;lt;host&amp;gt;:&amp;lt;port&amp;gt;/Pages/Category.aspx&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;1. On the page, click &lt;STRONG&gt;Site Actions&lt;/STRONG&gt;, and then click &lt;STRONG&gt;Edit Page&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The page is now in edit mode.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;1. In the toolbar of the &lt;STRONG&gt;Product Query&lt;/STRONG&gt; Web Part, click &lt;STRONG&gt;Edit&lt;/STRONG&gt;, and then click &lt;STRONG&gt;Modify Shared Web Part&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The Web Part properties pane opens.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;1. Expand the &lt;STRONG&gt;Advanced (Commerce)&lt;/STRONG&gt; properties. In the &lt;STRONG&gt;Catalog&lt;/STRONG&gt; box, type the same catalog name as you did for step 8 above, and then click &lt;STRONG&gt;Apply&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This section should state the following:&lt;/P&gt;
&lt;H2&gt;Specifying the Default Site Channel and Catalog Names&lt;/H2&gt;
&lt;P&gt;Use the following instructions to specify the Default Web site channel and catalog names. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B3%5D.gif"&gt;&lt;IMG style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px" height=22 alt=clip_image001[3] src="http://blogs.msdn.com/blogfiles/commercesupport/WindowsLiveWriter/ClarificationsCommentsCorrectionstotheCo_DAD0/clip_image001%5B3%5D_thumb.gif" width=28 border=0&gt;&lt;/A&gt;&lt;STRONG&gt;To specify the Default Web site channel and catalog names&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;1. Log on to the operating system under a user account that has administrative privileges in SharePoint for the site collection where the Default Web site was deployed.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;2. In your browser, navigate to the Default Web site. The URL is as follows:&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;http://&amp;lt;host&amp;gt;:&amp;lt;port&amp;gt;/Pages/default.aspx&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;3. Click &lt;STRONG&gt;Site Actions&lt;/STRONG&gt;, and then click &lt;STRONG&gt;View All Site Content&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;4. Under &lt;STRONG&gt;Lists&lt;/STRONG&gt;, click &lt;STRONG&gt;Channel Configuration&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;5. In the list, click &lt;STRONG&gt;Channel&lt;/STRONG&gt;, and then click &lt;STRONG&gt;Edit item&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;6. In the &lt;STRONG&gt;Value&lt;/STRONG&gt; box, type &lt;STRONG&gt;Default&lt;/STRONG&gt;, and then click &lt;STRONG&gt;OK&lt;/STRONG&gt;. You must type the value exactly as it appears here.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;7. In the list, click &lt;STRONG&gt;Default Catalog&lt;/STRONG&gt;, and then click &lt;STRONG&gt;Edit item&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;8. In the Value box, type one of the following:&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· If you unpacked the Commerce Site with sample data, type &lt;STRONG&gt;Adventure Works Catalog&lt;/STRONG&gt;, and then click &lt;STRONG&gt;OK&lt;/STRONG&gt;. You must type the value exactly as it appears here.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;· If you unpacked only the schema of the Commerce Site (no sample data), type the name of your catalog, and then click &lt;STRONG&gt;OK&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;9. Go back to the URL of the Default Web site. &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The site now displays the Web Parts.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;==================================================================================================&lt;/P&gt;
&lt;P&gt;On page 126 you will find the following:&lt;/P&gt;
&lt;H2&gt;&lt;A class="" title=_Toc223934169 name=_Toc223934169&gt;&lt;/A&gt;&lt;FONT color=#000000&gt;Setting &lt;/FONT&gt;&lt;A class="" title=DSDOC_Site_Variations_Default_Site134036 name=DSDOC_Site_Variations_Default_Site134036&gt;&lt;/A&gt;up Site Variations for the Default Site&lt;/H2&gt;
&lt;P&gt;This topic is missing steps and data that is needed in order to complete the process correctly. As the topic is long please see the following blog post on setting this up. The information supplied in the blog post will be incorporated in to a future version of the installation guide.&lt;/P&gt;
&lt;P&gt;&lt;A title=http://blogs.msdn.com/commercesupport/archive/2009/03/17/how-to-setup-site-variations-for-the-default-site.aspx href="http://blogs.msdn.com/commercesupport/archive/2009/03/17/how-to-setup-site-variations-for-the-default-site.aspx"&gt;http://blogs.msdn.com/commercesupport/archive/2009/03/17/how-to-setup-site-variations-for-the-default-site.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;==================================================================================================&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9458890" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Commerce Server 2007 supports SQL Server 2005 SP3</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/03/03/commerce-server-2007-supports-sql-server-2005-sp3.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/03/03/commerce-server-2007-supports-sql-server-2005-sp3.aspx</id><published>2009-03-03T20:22:00Z</published><updated>2009-03-03T20:22:00Z</updated><content type="html">&lt;P&gt;We have completed all testing of both the Commerce Server 2007 Core API and the Data Warehouse functionality with SQL Server 2005 Service Pack 3. All test cases have passed with no issues and we do fully support this update to SQL Server 2005.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9457086" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author><category term="Commerce Server 2007" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2007/" /><category term="Setup and Deployment" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Setup+and+Deployment/" /></entry><entry><title>Commerce Server 2009 MSDN Forum is now available</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/02/02/commerce-server-2009-msdn-forum-is-now-available.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/02/02/commerce-server-2009-msdn-forum-is-now-available.aspx</id><published>2009-02-03T01:33:24Z</published><updated>2009-02-03T01:33:24Z</updated><content type="html">&lt;blockquote&gt;   &lt;p&gt;The MSDN support and news forum for partners and customers is now live and you can start posting your Commerce Server 2009 related questions, suggestions and feedback on the forum.&lt;/p&gt;    &lt;p&gt;&lt;a href="http://social.msdn.microsoft.com/Forums/en-US/commserver2009/threads/"&gt;http://social.msdn.microsoft.com/Forums/en-US/commserver2009/threads/&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;&amp;#160;&lt;/p&gt;    &lt;p&gt;To visit the forums for Commerce Server 2007 and earlier versions you can use the link below.&lt;/p&gt;    &lt;p&gt;&lt;a title="http://social.msdn.microsoft.com/Forums/en-US/category/commserver/" href="http://social.msdn.microsoft.com/Forums/en-US/category/commserver/"&gt;http://social.msdn.microsoft.com/Forums/en-US/category/commserver/&lt;/a&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9391802" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author><category term="Commerce Server 2007" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2007/" /><category term="Commerce Server 2009" scheme="http://blogs.msdn.com/b/commercesupport/archive/tags/Commerce+Server+2009/" /></entry><entry><title>Are you getting ready for Commerce Server 2009?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2009/01/22/are-you-getting-ready-for-commerce-server-2009.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2009/01/22/are-you-getting-ready-for-commerce-server-2009.aspx</id><published>2009-01-23T00:02:16Z</published><updated>2009-01-23T00:02:16Z</updated><content type="html">&lt;p&gt;Commerce Server 2009 is coming and if you are not already reviewing it then I would like to encourage you to do so.&lt;/p&gt;  &lt;p&gt;Commerce Server 2009 delivers the ability to increase your business reach by making it possible to sell via multiple channels using an out-of-the-box shopping site with SharePoint Office Server 2007 and Windows SharePoint Services 3.1 integration and the new Multi-Channel Commerce Foundation. The new out-of-the-box shopping site leverages SharePoint Commerce Services, which provides a gallery of ASP.NET 3.5 based web parts, a comprehensive e-commerce shopping feature-set and technology integration between Commerce Server and SharePoint technologies. The Multi-Channel Commerce Foundation provides a new unified, extensible run-time programming model for Commerce Server, including new run-time e-commerce capabilities. &lt;/p&gt;  &lt;p&gt;You can download the release candidate at &lt;a title="https://www.microsoft.com/downloads/details.aspx?FamilyID=b7eeda01-5cba-4945-a44e-a6f5e3eed0b0&amp;amp;displaylang=en" href="https://www.microsoft.com/downloads/details.aspx?FamilyID=b7eeda01-5cba-4945-a44e-a6f5e3eed0b0&amp;amp;displaylang=en"&gt;https://www.microsoft.com/downloads/details.aspx?FamilyID=b7eeda01-5cba-4945-a44e-a6f5e3eed0b0&amp;amp;displaylang=en&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9370699" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Unable to register CommerceSCWTemplate.xml on Windows Server 2003 SP2</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2008/12/31/unable-to-register-commercescwtemplate-xml-on-windows-server-2003-sp2.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2008/12/31/unable-to-register-commercescwtemplate-xml-on-windows-server-2003-sp2.aspx</id><published>2008-12-31T19:13:29Z</published><updated>2008-12-31T19:13:29Z</updated><content type="html">&lt;p&gt;When you attempt to register the Commerce Server 2007 Security Configuration Wizard template on a machine running Windows Server 2003 with Service Pack 2 installed you may receive an error that it cannot be installed.&amp;#160; The instructions for the installation of the template are in the documentation at &lt;a href="http://msdn2.microsoft.com/en-us/library/aa545922.aspx"&gt;http://msdn2.microsoft.com/en-us/library/aa545922.aspx&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;To resolve the issue, open the CommerceSCWTemplate.xml file in an text editor such as NotePad and find the line starting with&lt;/p&gt;  &lt;p&gt;&amp;#160;&amp;#160; &amp;lt;Version OSVersionMajorInfo=&amp;quot;5&amp;quot;... &lt;/p&gt;  &lt;p&gt;Make the following change in the line: &lt;/p&gt;  &lt;p&gt;ServicePackMajor=&amp;quot;1&amp;quot; to ServicePackMajor=&amp;quot;2&amp;quot; &lt;/p&gt;  &lt;p&gt;After the change is made you should be able to register the security template.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;You may also need to use the following command line to complete the registration successfully is you get an error that the file cannot be found. &lt;/p&gt;  &lt;p&gt;scwcmd register /kbname:Commerce2007 /kbfile:&amp;quot;c:\windows\security\msscw\kbs\CommerceSCWTemplate.xml&amp;quot;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9258637" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Commerce Server 2009 December CTP Release is Available</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2008/12/31/commerce-server-2009-december-ctp-release-is-available.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2008/12/31/commerce-server-2009-december-ctp-release-is-available.aspx</id><published>2008-12-31T19:07:52Z</published><updated>2008-12-31T19:07:52Z</updated><content type="html">&lt;p&gt;The December CTP release of the upcoming Commerce Server 2009 is available for everyone to download and start taking a look at.&amp;#160; You can find it here...&lt;/p&gt;  &lt;p&gt;&lt;a title="http://www.microsoft.com/downloads/details.aspx?familyid=dc30f74f-e510-40b4-8da2-895e33fc9490&amp;amp;displaylang=en&amp;amp;tm" href="http://www.microsoft.com/downloads/details.aspx?familyid=dc30f74f-e510-40b4-8da2-895e33fc9490&amp;amp;displaylang=en&amp;amp;tm"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=dc30f74f-e510-40b4-8da2-895e33fc9490&amp;amp;displaylang=en&amp;amp;tm&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9258626" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Purpose of the admin_commerceAdministrator_role in the MSCS_Admin database</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/commercesupport/archive/2008/12/31/purpose-of-the-admin-commerceadministrator-role-in-the-mscs-admin-database.aspx" /><id>http://blogs.msdn.com/b/commercesupport/archive/2008/12/31/purpose-of-the-admin-commerceadministrator-role-in-the-mscs-admin-database.aspx</id><published>2008-12-31T19:03:11Z</published><updated>2008-12-31T19:03:11Z</updated><content type="html">&lt;p&gt;In the Commerce Server 2007 MSCS_Admin database there is a SQL Server security role named &amp;quot;admin_commerceAdministrator_role&amp;quot;.&amp;#160; The purpose and usage of this role is to allow a user or group who do not have DBO or SYSAdmin privileges in SQL Server to the MSCS_Admin database the ability to make changes to a Commerce Server site such as adding an application or site resource or the removal of a site application or site resource.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9258615" width="1" height="1"&gt;</content><author><name>C.S.T. _</name><uri>http://blogs.msdn.com/CST/ProfileUrlRedirect.ashx</uri></author></entry></feed>