The Catalog Manager Business Management application displays only 500 items on a computer that is running Commerce Server 2002 Feature Pack 1 (920679)



The information in this article applies to:

  • Microsoft Commerce Server 2002 Feature Pack 1

INTRODUCTION

The Catalog Manager Business Management application lets you manage catalogs and design catalogs on a computer that is running Microsoft Commerce Server 2002 Feature Pack 1. You may notice that the application displays only 500 items, even though you have many more items in the catalog or in the category.

MORE INFORMATION

The CatalogWebService element of the Web.config file supports the MaxRootItems attribute. The default value of the MaxRootItems attribute is 500. You can change the following code section to increase the value of the MaxRootItems attribute as follows.
<catalogWebService siteName="CS2002StarterSite" authorizationPolicyPath="CatalogAuthorizationStore.xml" debugLevel="Production" fileUploadDirectory="%windir%\temp" maxChunkSize="1024" maxUploadFileSize="204800" MaxRootItems="500" timeOutHours="24"/>
If you change the value of the MaxRootItems attribute to 800, the application displays 800 items. Then, the code section resembles the following code.
<catalogWebService siteName="CS2002StarterSite" authorizationPolicyPath="CatalogAuthorizationStore.xml" debugLevel="Production" fileUploadDirectory="%windir%\temp" maxChunkSize="1024" maxUploadFileSize="204800" MaxRootItems="800" timeOutHours="24"/>

Modification Type:MajorLast Reviewed:6/30/2006
Keywords:kbinfo KB920679 kbAudDeveloper kbAudITPRO