You may receive an error message when you try to run the Office Information Bridge Framework 1.5 client component on a computer that is running the .NET Framework 2.0 (907350)



The information in this article applies to:

  • Microsoft Office Information Bridge Framework
  • Microsoft .NET Framework 2.0

SYMPTOMS

When you try to run the Microsoft Office Information Bridge Framework 1.5 client component on a computer that is running the Microsoft .NET Framework 2.0, you may receive an error message that is similar to the following:
There are problems with the Microsoft Office Information Bridge Framework 1.5 client. Run the client Setup program to repair the installation. The error details are stored in the event log.

CAUSE

This problem occurs because the Information Bridge client configuration file is not compatible with the .NET Framework 2.0.

RESOLUTION

To resolve this problem, follow these steps:
  1. In Notepad, click File, click Open, and then locate the C:\Program Files\Microsoft Information Bridge\1.5\Framework folder.
  2. Click the Microsoft.InformationBridge.Framework.Config file, and then click Open.
  3. In the configuration file, locate the following code.
    <configSections>
    <sectionGroup name="InformationBridgeFrameworkEngine">
    <section name="MetadataService" type="System.Configuration.SingleTagSectionHandler" />
    <section name="Cache" type="System.Configuration.SingleTagSectionHandler" />
    <section name="CacheRefresh" type="System.Configuration.SingleTagSectionHandler" />
    <section name="Execution" type="System.Configuration.SingleTagSectionHandler" />
    </sectionGroup>
    
  4. Replace the code that you located in step 3 with the following code.
    <sectionGroup name="InformationBridgeFrameworkEngine">
    <section name="MetadataService" type="System.Configuration.SingleTagSectionHandler,System, Culture=neutral, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089" />
    <section name="Cache" type="System.Configuration.SingleTagSectionHandler,System, Culture=neutral, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089" />
    <section name="CacheRefresh" type="System.Configuration.SingleTagSectionHandler,System, Culture=neutral, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089" />
    <section name="Execution" type="System.Configuration.SingleTagSectionHandler,System, Culture=neutral, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089" />
    </sectionGroup>
  5. In the configuration file, locate the following code.
    <section name="ApplicationSettings" type="System.Configuration.DictionarySectionHandler" />
    
  6. Replace the code that you located in step 5 with the following code.
    <section name="ApplicationSettings" type="System.Configuration.DictionarySectionHandler,System, Culture=neutral, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089"/>
  7. On the File menu, click Exit, and then click Yes to save the file and to exit Notepad.
  8. Grant trust permissions for the custom Information Bridge solution assemblies in the .NET Framework 2.0 security policy. To do this, use the Microsoft .NET Framework 2.0 Configuration tool to modify the .NET Framework 2.0 security policy.

    For more information about how to grant trust permissions for folders and for assemblies, visit the following Microsoft Developer Network (MSDN) Web site:

Modification Type:MajorLast Reviewed:10/12/2005
Keywords:kbUpgrade kbtshoot kbprb KB907350 kbAudDeveloper kbAudITPRO