Modifying the Admin Console Configuration File

CCF 2009 may display an error, if you add more than 200 agents in the Admin Console. In order to avoid this error, you must edit the mmc.exe configuration file and add the tag maxReceivedMessageSize.

To edit the Admin Console Configuration file:

  1. Open the mmc.exe.config file in the folder <InstallDir>/ Administrative Tools.

  2. Locate the Bindings node.

  3. Edit the Binding1 tag and add maxReceivedMessageSize, as follows:

  4. <readerQuotas maxReceivedMessageSize="99999999" /> 
    
  5. Following is a sample of the edited Bindings node:

  6. <bindings>
       <basicHttpBinding>
         <binding name="Binding1">
            <readerQuotas maxReceivedMessageSize="99999999" />
            <security mode="TransportCredentialOnly">
               <transport clientCredentialType="Windows" />
            </security>
         </binding>
         <binding name="Binding2">
            <readerQuotas maxStringContentLength="99999999" />
            <security mode="Transport">
               <transport clientCredentialType="Windows" />
            </security>
         </binding>
       </basicHttpBinding>
     </bindings>
    
  7. Save the file.

  8. Reopen Admin Console.