This is a migrated thread and some comments may be shown as answers.

RadEditor for MOSS to RadEditor for SharePoint migration.

17 Answers 246 Views
WebParts for SharePoint
This is a migrated thread and some comments may be shown as answers.
Dasaev
Top achievements
Rank 1
Dasaev asked on 13 Dec 2010, 07:00 PM
Hello guys,

I have a Web Application that was originally created on SharePoint 2007 and on several pages we are using the RadEditor for MOSS webpart. Now we're migrating that Web Application to SharePoint 2010. I've installed the RadEditor for Sharepoint before migrating the content but when I migrate the content I get the next error on the pages that are using RadEditor for MOSS:

"Web Part Error: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe."

I know that the problem could be that the webpart changes its name and that now I've to change ALL the pages that are using the SP 2007 webpart to the new 2010 one.

I would like to know if there is any quick way to do the migration of webparts because we have several pages with that error and It's going to take a while in order to have all of them fixed.

Thanks in advance.

17 Answers, 1 is accepted

Sort by
0
Stanimir
Telerik team
answered on 15 Dec 2010, 09:11 AM
Hello Dasaev,

Could you provide me with the web.config file of your SP2010 site? I will review it and advice you further.


Regards,
Stanimir
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
John
Top achievements
Rank 1
answered on 14 Jul 2011, 01:20 PM
we are planning to perform the same migration, from 2007 to 2010.

we are using telerik editor today, will continue to do this in 2010.

we also have a lot of pages that uses telerik 2007 version.

What do we need to do? and what is the most simple way to migrate?
0
Dasaev
Top achievements
Rank 1
answered on 14 Jul 2011, 03:45 PM
What we had to do was to add an assemblyBinding entry in the <configuration><runtime> section of our web.config file like this:
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" culture="neutral" />
    <bindingRedirect oldVersion="2010.1.309.35" newVersion="2010.3.1109.35" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
    <bindingRedirect oldVersion="1.0.0.0-6.1.0.0" newVersion="6.1.0.0" />
  </dependentAssembly>
</assemblyBinding>
It basically means that on Runtime all the assemblies that do a reference to a previous version of Telerik (in this case the 2010.1.309.35 one) or RadEditorSharePoint (1.0.0.0 to 6.1.0.0) use the new versions of them (Telerik 2010.3.1109.35 and RadEditorSharePoint 6.1.0.0).
I do recommend that you use this workaround after you ensure that you can't find any reason why your RadEditor or another controls cannot work after a version update; because It is, a workaround.
0
Stanimir
Telerik team
answered on 15 Jul 2011, 11:22 AM
Hi Dasaev,

Review the following online help article: Upgrading to a newer version of RadEditor for SharePoint 2010.
Steps 7. and 8. regard the usage of web parts created with previous versions of the control. In order to do this there are two things that need to be done.
1. Add SafeContorol elements for the previous versions of RadEditorSharePoint assembly.
<SafeControl Assembly="RadEditorSharePoint, Version=4.x.x.x, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" />
<SafeControl Assembly="RadEditorSharePoint, Version=5.x.x.x, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" />
<SafeControl Assembly="RadEditorSharePoint, Version=6.x.x.x, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" />
Here should be added all the versions you have been using before.

2. Add dependentassembly elements. For example the following binding redirect will handle all previous versions of RadEditor for MOSS/SP (assuming that the latest one is 6.1.6.0).
<dependentAssembly>
    <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral"/>
    <bindingRedirect oldVersion="1.0.0.0-6.1.6.0" newVersion="6.1.6.0" />
</dependentAssembly>



Greetings,
Stanimir
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
IT Department
Top achievements
Rank 1
answered on 22 Sep 2011, 12:55 PM
Hi Stanimir,

We have the same issue regarding upgrading from RadEditor for MOSS 2007 to RadEditor for SharePoint 2010.

In our migrated SharePoint 2010 Farm, I've installed RadEditor for SharePoint 2010 version 6.1.7.0. In MOSS 2007, we used versions 5.4.1.0 and 5.8.4.0.

So in the web.config for our SharePoint 2010 Web Application, I've added this:
<SafeControl Assembly="RadEditorSharePoint, Version=5.4.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />
<SafeControl Assembly="RadEditorSharePoint, Version=5.8.4.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />
<SafeControl Assembly="RadEditorSharePoint, Version=6.1.7.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />

As well as:
<dependentassembly>
  <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
  <bindingRedirect oldVersion="1.0.0.0-6.1.7.0" newVersion="6.1.7.0" />
</dependentassembly>

Still, when I view web part pages that has RadEditor for MOSS 2007 web parts, it displays only the famous "Web Part Error: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe" message.
I've tried exporting one of these web parts from our original MOSS 2007 farm, and the assembly version states "5.8.4.0" on it.

Any idea on what might be wrong?
Please help.

Thank you,

Regards,
Frank-Ove
0
Stanimir
Telerik team
answered on 26 Sep 2011, 10:37 AM
Hello Frankok,

Could you send me the whole contents of the web.config file of your MOSS site? I will review it and advice you further.


Regards,
Stanimir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
IT Department
Top achievements
Rank 1
answered on 27 Sep 2011, 11:55 AM
Hi Stanimir,

Here's the requested web.config content:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<configuration>
  <configSections>
    <sectionGroup name="SharePoint">
      <section name="SafeControls" type="Microsoft.SharePoint.ApplicationRuntime.SafeControlsConfigurationHandler, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <section name="RuntimeFilter" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WebPartLimits" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WebPartCache" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WebPartWorkItem" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WebPartControls" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="SafeMode" type="Microsoft.SharePoint.ApplicationRuntime.SafeModeConfigurationHandler, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <section name="MergedActions" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="PeoplePickerWildcards" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WorkflowServices" type="Microsoft.SharePoint.Workflow.ServiceConfigurationSection, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <section name="BlobCache" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="OutputCacheProfiles" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="ObjectCache" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </sectionGroup>
    <sectionGroup name="System.Workflow.ComponentModel.WorkflowCompiler" type="System.Workflow.ComponentModel.Compiler.WorkflowCompilerConfigurationSectionGroup, System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
      <section name="authorizedTypes" type="System.Workflow.ComponentModel.Compiler.AuthorizedTypesSectionHandler, System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <section name="authorizedRuleTypes" type="System.Workflow.ComponentModel.Compiler.AuthorizedTypesSectionHandler, System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </sectionGroup>
    <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
      <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
        <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
        <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
          <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" />
          <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
          <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
        </sectionGroup>
      </sectionGroup>
    </sectionGroup>
    <sectionGroup name="microsoft.sharepoint.client">
      <section name="serverRuntime" type="Microsoft.SharePoint.Client.ClientServiceServerRuntimeSection, Microsoft.SharePoint.Client.ServerRuntime, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    </sectionGroup>
    <sectionGroup name="ReportingServices">
      <section name="DataExtensions" type="System.Configuration.DictionarySectionHandler" />
    </sectionGroup>
    <sectionGroup name="Bpm">
      <section name="FCODaoProviders" type="System.Configuration.DictionarySectionHandler" />
    </sectionGroup>
    <sectionGroup name="reportserver">
      <section name="redirection" type="Microsoft.ReportingServices.SharePoint.Configuration.RSRedirectConfigSection, RSSharePointSoapProxy, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
    </sectionGroup>
  </configSections>
  <connectionStrings>
    <add name="ODUtilConnString" connectionString="data source=DBSQLT04;User ID=odportal;Password=Portal2009;Initial Catalog=ODSP2010DEV_SharePoint_CustomDB" providerName="System.Data.SqlClient" />
    <add name="Connection String" connectionString="Data Source=;Initial Catalog=SP01_Faceted_Search_Caching;Integrated Security=True" providerName="System.Data.SqlClient" />
    <add name="SharedServices" connectionString="Data Source=DBSQLP03;Initial Catalog=ODSSP_DB;Integrated Security=True" providerName="System.Data.SqlClient" />
  </connectionStrings>
  <microsoft.sharepoint.client>
    <serverRuntime>
      <hostTypes>
        <add type="Microsoft.SharePoint.Client.SPClientServiceHost, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </hostTypes>
    </serverRuntime>
  </microsoft.sharepoint.client>
  <SharePoint>
    <SafeMode MaxControls="200" CallStack="true" DirectFileDependencies="10" TotalFileDependencies="50" AllowPageLevelTrace="true">
      <PageParserPaths>
      </PageParserPaths>
    </SafeMode>
    <WebPartLimits MaxZoneParts="50" PropertySize="1048576" />
    <WebPartCache Storage="CacheObject" />
    <WebPartControls DatasheetControlGuid="65BCBEE4-7728-41a0-97BE-14E1CAE36AAE" />
    <SafeControls>
      <SafeControl Assembly="System.Web, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="System.Web, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.HtmlControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI" TypeName="*" Safe="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="SqlDataSource" Safe="False" AllowRemoteDesigner="False" SafeAgainstScript="True" />
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="AccessDataSource" Safe="False" AllowRemoteDesigner="False" SafeAgainstScript="True" />
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="XmlDataSource" Safe="False" AllowRemoteDesigner="False" SafeAgainstScript="True" />
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="ObjectDataSource" Safe="False" AllowRemoteDesigner="False" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="ListViewWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="ImageWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="PageViewerWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="TitleBarWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="MembersWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.ApplicationPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.SoapServer" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Meetings" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="ListViewWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="ImageWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="PageViewerWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="TitleBarWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="MembersWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.ApplicationPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.SoapServer" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Meetings" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Search, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Search.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint.Search, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Search.Internal.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="ListViewWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="XsltListViewWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="ImageWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="PageViewerWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="PictureLibrarySlideshowWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="TitleBarWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="MembersWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="SPUserCodeWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.ApplicationPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.ApplicationPages.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Applications.GroupBoard.WebPartPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Applications.GroupBoard.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.SoapServer" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Meetings" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Search.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Search.Internal.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Src="~/_controltemplates/*" IncludeSubFolders="True" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Web.UI" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.Office.Access.Server.UI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Access.Server.UI" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Access.Server.Application, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Access.Server.Data" TypeName="AccessServicesDataSource" />
      <SafeControl Assembly="Microsoft.Office.Access.Server.Application, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Access.Server.Data" TypeName="ApplicationCookie" />
      <SafeControl Assembly="Microsoft.Office.Workflow.Feature, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Workflow.Feature" TypeName="ProcessAllTasksButton" Safe="True" />
      <SafeControl Assembly="Microsoft.Office.DocumentManagement, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.Office.Policy, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.RecordsManagement.Controls" TypeName="*" Safe="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="Microsoft.Office.Excel.WebUI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Excel.WebUI" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Excel.WebUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Excel.WebUI" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Server.FilterControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.Office.Server.FilterControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="ApplyFiltersWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.Office.Server.FilterControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="DateFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.Office.Server.FilterControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="PageContextFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.Office.Server.FilterControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="QueryStringFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.Office.Server.FilterControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SPSlicerTextWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.Office.Server.FilterControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SPSlicerChoicesWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.Office.Server.FilterControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="UserContextFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.Office.InfoPath.Server, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.InfoPath.Server.Controls.WebUI" TypeName="*" Safe="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.Office.Server.Chart, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls" TypeName="*" Safe="True" SafeAgainstScript="True" />
      <SafeControl Assembly="Microsoft.Office.Server.UI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Server.UI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.Office.Server, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.Office.Server, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls.FieldTypes" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.Office.Server.UserProfiles, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Server.UserProfiles, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls.FieldTypes" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.PerformancePoint.Scorecards.WebControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.PerformancePoint.Scorecards.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="ProfilePagesControl" />
      <SafeControl Assembly="Microsoft.ReportingServices.SharePoint.UI.ServerPages, Version=10.50.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" Namespace="Microsoft.ReportingServices.SharePoint.UI" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.ReportingServices.SharePoint.UI.WebParts, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" Namespace="Microsoft.ReportingServices.SharePoint.UI.WebParts" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing" TypeName="*" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.Internal.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.Navigation" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls.FieldTypes" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Excel.WebUI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Excel.WebUI" TypeName="*" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.Internal.WebControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.Navigation" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="ContentByQueryWebPart" Safe="True" SafeAgainstScript="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="SummaryLinkWebPart" Safe="True" SafeAgainstScript="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="TableOfContentsWebPart" Safe="True" SafeAgainstScript="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="MediaWebPart" Safe="True" SafeAgainstScript="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="ContentByQueryWebPart" Safe="True" SafeAgainstScript="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="SummaryLinkWebPart" Safe="True" SafeAgainstScript="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="TableOfContentsWebPart" Safe="True" SafeAgainstScript="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="Microsoft.Office.Excel.WebUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Excel.WebUI" TypeName="*" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.MobileControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="FilterValuePair" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="FilterValues" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="IScorecardFilterValues" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="ApplyFiltersToolPart" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="ApplyFiltersButtonAlign" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="ApplyFiltersWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SPSlicerBaseWebPart" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="UserInputFilterWebPart" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="MultiValuedUserInputFilterWebPart" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="FilterMultipleValueHandling" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="ContextFilterWebPart" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="DateFilterDefaultValueKind" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="DateFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="FilterProviderConnectionPoint" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="ListFilterValuesPickerUIContextBase" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="FilterValuesPickerDialog" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="StaticListFilterValuesPickerContext" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="PageContextFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="QueryStringFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SPSlicerTextWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="FilterValuePairCollection" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SPSlicerChoicesWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="UserContextFilterValueKind" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="UserContextFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="ScorecardFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="BusinessDataFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SpListFilterWebPart" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="true" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="MessageKind" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="MessagePanel" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Server.Search, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.Search.WebControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SearchBox" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SearchBoxEx" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="QueryResultsDateTimeFormatType" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SearchResults" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="LocStringId" />
      <SafeControl Assembly="Microsoft.Office.Server.Search, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.Search.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SearchBox" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SearchBoxEx" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="QueryResultsDateTimeFormatType" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SearchResults" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="LocStringId" />
      <SafeControl Assembly="Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.Search.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.Search.Monitoring" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.Search.MobileControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.SharePoint.ClientExtensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.SharePoint.ClientExtensions.Publishing" TypeName="TakeListOfflineControl" />
      <SafeControl Assembly="Microsoft.Office.SharePoint.ClientExtensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.SharePoint.ClientExtensions.Publishing" TypeName="TakeListOfflineRibbonControl" />
      <SafeControl Assembly="Microsoft.SharePoint.Taxonomy, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Taxonomy" TypeName="*" />
      <SafeControl Assembly="Microsoft.Office.Visio.Server, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Visio.Server.WebControls" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.Office.Server.WebAnalytics.UI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebAnalytics.Reporting" TypeName="WhatsPopularWebPart" Safe="True" AllowRemoteDesigner="True" />
      <SafeControl Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow.Install" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="EG.CQWP, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a0d334afb73e74c8" Namespace="EG.CQWP" TypeName="EnhancedCBQ" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="EG.SharePoint.ContentTypes.General, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a0d334afb73e74c8" Namespace="EG.SharePoint.ContentTypes.General" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="EG.WebParts.ListViewer, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b91160dd2e1e4171" Namespace="EG.WebParts" TypeName="ListViewer" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="PrintList, Version=1.0.0.0, Culture=neutral, PublicKeyToken=6618850e84f0219f" Namespace="PrintList" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="ODMembersWebPart, Version=1.0.0.0, Culture=neutral, PublicKeyToken=dbda121c6a853f92" Namespace="ErgoGroup.OD" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.Office.Server.Powerpoint.Web.UI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.Powerpoint.Web.UI" TypeName="*" />
      <SafeControl Assembly="ErgoGroup.ThemeInstaller, Version=3.0.0.0, Culture=neutral, PublicKeyToken=a0d334afb73e74c8" Namespace="ErgoGroup.ThemeInstaller" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="OD.MySiteStapler, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a0d334afb73e74c8" Namespace="OD.MySiteStapler" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="OD.Silverlight.MyTeamSites.Solution, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a0d334afb73e74c8" Namespace="OD.Silverlight.MyTeamSites.Solution" TypeName="MyTeamSites" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="AccessCheckerWebPart, Version=1.0.0.0, Culture=neutral, PublicKeyToken=943c90ea94e8d758" Namespace="TomShirley.WebParts.AccessChecker" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="CKS.EnhancedContentQueryWebPart, Version=1.0.0.0, Culture=neutral, PublicKeyToken=03c4e6ed81288e59" Namespace="CKS.EnhancedContentQueryWebPart" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RLSoft.SharePoint.FAQ, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d52a26d9935e18bd" Namespace="RLSoft.SharePoint.FAQ" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="SmartTools.EnhancedSiteActions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5ba4e87c2e0f0c98" Namespace="SmartTools.EnhancedSiteActions" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Bamboo.SPGridView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2cc91efae2d531be" Namespace="Bamboo.WebParts" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Bamboo.ListRollupDataSourceControl, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8c72b2bd3eb9ec1e" Namespace="Bamboo.DataSourceControls" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Bamboo.ListRollup.WebPart, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8c72b2bd3eb9ec1e" Namespace="Bamboo.WebParts" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="ODUserConnectionsWebPart, Version=1.0.0.0, Culture=neutral, PublicKeyToken=0c27057730ec1dbe" Namespace="ErgoGroup.OD" TypeName="*" Safe="True" />
      <SafeControl Assembly="RSWebParts, Version=8.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" Namespace="Microsoft.ReportingServices.SharePoint.UI.WebParts" TypeName="*" Safe="True" />
      <SafeControl Assembly="ReturnOfSmartPart, Version=1.3.0.0, Culture=neutral, PublicKeyToken=9f4da00116c38ec5" Namespace="SmartPart" TypeName="*" Safe="True" />
      <SafeControl Assembly="RLSoft.SharePoint.FAQ, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d52a26d9935e18bd" Namespace="RLSoft.SharePoint.FAQ" TypeName="*" Safe="True" />
      <SafeControl Assembly="Microsoft.Practices.EnterpriseLibrary.Validation.Integration.AspNet, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="Microsoft.Practices.EnterpriseLibrary.Validation.Integration.AspNet" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal.ExtendedSearch, Version=3.0.0.0, Culture=neutral, PublicKeyToken=a646907c4a695009" Namespace="Microsoft.SharePoint.Portal.ExtendedSearch.WebControls" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Grep.SharePoint.SmartDocuments, Version=1.5.4.0, Culture=neutral, PublicKeyToken=90d7905332515556" Namespace="Grep.SharePoint.SmartDocuments" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI, Version=2011.2.915.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI, Version=2011.2.915.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Editor" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI, Version=2011.2.915.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Widgets" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI, Version=2011.2.915.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.Design" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI.Skins, Version=2011.2.915.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=6.1.7.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=6.1.7.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.FieldEditor" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=6.1.7.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.ListFieldEditor" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=5.4.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="RadEditorSharePoint, Version=5.8.4.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Ajax.SharePoint, Version=2011.2.915.35, Culture=neutral, PublicKeyToken=aa9e5f693af67c7b" Namespace="Telerik.Ajax.SharePoint" TypeName="*" Safe="True" SafeAgainstScript="False" />
    </SafeControls>
    <PeoplePickerWildcards>
      <clear />
      <add key="AspNetSqlMembershipProvider" value="%" />
    </PeoplePickerWildcards>
    <WorkflowServices>
      <WorkflowService Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Class="Microsoft.SharePoint.Workflow.SPWinOEWSSService">
      </WorkflowService>
      <WorkflowService Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Class="Microsoft.SharePoint.Workflow.SPWinOETaskService">
      </WorkflowService>
    </WorkflowServices>
    <MergedActions>
      <Action id="813d46d1-4342-4d45-b58c-439292cd454d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="e66f3f96-8a99-438e-80c9-4b9f56f95e93" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="bad91a44-2212-487a-9c89-202f6d347a9b" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="cad91a44-2212-487a-9c89-202f6d347a9c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="e66f3f96-8a99-438e-80c9-4b9f56f95e92" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="d40d67d9-9a19-4484-94f6-41d432229c09" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="affcce0e-a70b-4294-a017-e421722f8b42" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="b9c0ea3c-2671-43ee-a9c0-59495dab1d98" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="54746c6e-b00f-4b32-b7e3-d4c8d1ef7c10" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="ae31f688-4253-4bc4-b5b2-6ae55c9f85a1" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="6ee13f04-2c01-46ef-a1cd-b1a8ff7b3ac5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="bf064279-3567-42bf-a34d-0a74f6fe56ca" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="080d803c-e546-40b0-a0ba-35656374993b" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="35dee521-70fb-4aba-b716-96c9607eded5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="2e7c1877-d70f-4c42-8a77-f8d611bcae85" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="6eff9bc8-a42a-4839-be23-dcb11a5d8af6" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="282ca3da-439a-4f7d-bcd1-3ef6b3cc4c25" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="23449080-66bb-4a2d-a839-11c2321a7257" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="59bf77f0-85cc-430d-b93e-f955fd8e8655" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="f79a8155-0950-4503-b019-45f9b801945c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="05ed769b-74e7-44a5-bb3f-abbff5b496a2" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="d2dc85b7-1b73-4f26-afeb-5dbe3d741dc4" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="3905821d-7eca-4879-909b-90c92f2efb57" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="e3b7adae-f5db-4ce5-becb-1af83f7938ce" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.ewr.xml" />
      <Action id="96e4385b-521e-4303-84d6-9acd1375836f" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.ewr.xml" />
      <Action id="c58dd4f4-7da9-493b-8839-862141db04a1" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.ewr.xml" />
      <Action id="4c21f1ae-ef75-4de8-a6f8-ee2203042a26" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="b24f415a-4e34-434a-bd9c-5954378022b7" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.ewr.xml" />
      <Action id="6459acaf-1105-4552-8422-dc9f74f05276" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.ewr.xml" />
      <Action id="78d99e0a-e87d-4f58-94ef-3e9785878e1c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.extended.search.xml" />
      <Action id="5ef800bc-356e-4c06-a052-dc2ed31b4796" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.FilterControls.xml" />
      <Action id="0f718bd6-3cfc-4158-97fe-2dbb459e6bc9" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.ipfs.xml" />
      <Action id="5173fcbb-1def-4030-a6b9-3720fc5d4d33" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.ipfs.xml" />
      <Action id="af8445e4-5685-4a45-ac60-c7bcb4fa8036" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.ipfs.xml" />
      <Action id="578263f7-418b-45ab-a887-76c74f121d3c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.mosschart.xml" />
      <Action id="89be315b-a983-44f9-b1ed-d9920cf5528e" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0002-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0003-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0004-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0005-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0006-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="2637af1c-f384-4440-ab0c-e07a2e45f4d5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="d3b25f36-a5d4-4634-8c0d-285a5dfcec37" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="d318e399-6d35-49a7-9cfc-630659161272" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="bff41e71-268c-4832-a6b1-e67b1a848646" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="a093e8c6-ba89-4811-a891-e63e3eebb188" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pps.xml" />
      <Action id="c367ae4a-27df-4f01-84b8-e0296be6aaea" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pps.xml" />
      <Action id="ad2bf40d-04a5-4a1e-b6cd-1c6384b9882f" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pps.xml" />
      <Action id="da8363d7-c510-4424-a0ca-579399ada746" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pps.xml" />
      <Action id="4788a8f6-fe31-4e7a-ab91-50dffc279767" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pps.xml" />
      <Action id="95714573-dc40-434e-87e3-c04fe1c841d3" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pps.xml" />
      <Action id="5e33d0a9-b7d0-4d04-acbb-ac5871b51aba" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pps.xml" />
      <Action id="31114d0d-ae7c-45ef-a5fc-9b15dbd90677" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.prfpgs.xml" />
      <Action id="00e9a1da-5347-40ad-b5e9-214f9de71bf4" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\Webconfig.rs.xml" />
      <Action id="58382257-b886-4f27-a566-a7bfcd448aa6" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\Webconfig.rs.xml" />
      <Action id="0772c0f8-7f82-4430-a4c2-d419fba21eec" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\Webconfig.rs.xml" />
      <Action id="c6ab06e7-8010-4e47-80fd-6c02c3f0fe18" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\Webconfig.rs.xml" />
      <Action id="f460ad0a-93e3-4f57-8b34-43500cd5c421" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\Webconfig.rs.xml" />
      <Action id="596cd522-3c7e-4694-8e69-7bc7fb95952a" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\Webconfig.rs.xml" />
      <Action id="5aecae94-e886-47f9-aaeb-4db4d8ebad0e" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\Webconfig.rs.xml" />
      <Action id="591077dc-eea5-4770-89b9-c457e82057f6" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\Webconfig.rs.xml" />
      <Action id="68c8f882-0c21-4190-9c85-ec9672bf8c16" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\Webconfig.rs.xml" />
      <Action id="fc002d03-7839-402b-a94a-1c9a2d40b63d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="cd6122b2-5c40-45fb-952b-908354a91e33" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="743c7ec7-2e3f-47d8-a636-e0f5d873971d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="7577e2f1-78ef-4c08-b861-c151ce35e938" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="2365277a-c5ee-4589-84d4-c759e6b9477d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="b879238f-de6a-4766-bf2f-1f4348b0e900" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="7383fb3f-8d4d-48af-82bd-b06a00a8f9ef" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="0582988f-9c26-4990-8672-0099f4567b03" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="9008b35c-3ad5-4831-bcbe-ec456a4e152b" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="009e5494-26c5-4181-936f-4d16f444b642" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="4427b8cd-886a-4f31-b6c5-17c335f78e26" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="4cca960b-247e-4743-9f4b-835975e867f9" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="7fd9ed44-102a-40e5-a443-f72142f6f123" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="5552b985-f1b8-4647-83e1-97a3a8d5ca60" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="5f75013a-2a71-40c5-a77c-c39a97365ba3" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="72db2c92-8bc1-4767-a12c-94b67d46d0cf" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="4cc2777f-e9ed-4af4-acbb-9f101f64e4d6" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="eaa3e0c0-973a-4dbd-96e9-48f7837a8909" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1002-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1003-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1004-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1005-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1006-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1007-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1008-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1009-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100a-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100b-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100c-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100d-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100e-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100f-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="cc34a1f6-0355-4b09-8082-16e1d932c3b5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1010-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1011-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1012-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1014-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1015-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101f-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="5055b13f-c200-45dd-8dbd-b046710e01ac" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="2ac909bc-29ed-42dd-8b47-548a927c3501" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="ea2d54ca-cd14-48a7-a5ca-b10b24141937" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1019-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101a-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101b-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101c-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101d-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101e-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1020-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1021-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.spss.xml" />
      <Action id="ec0076ac-0c35-4880-8422-8062f5925bec" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.ss.xml" />
      <Action id="602bc8c3-9286-49a3-b973-3376ca78b297" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.taxonomy.xml" />
      <Action id="00e22a78-33ff-41ac-b0fb-ee46d1636e22" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.osrv.xml" />
      <Action id="4b60e42e-e6fc-4188-80d2-ef39e7cc0065" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.vwa.xml" />
      <Action id="1d415973-1146-4bc2-8324-83dfff5bfe33" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.webanalytics.xml" />
      <Action id="9429f00f-74d4-4c0c-980b-ec731a6f0e9f" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.livebooks.xml" />
      <Action id="5bfab9d2-7e00-408c-afcf-7750d6659b9c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pptserver.xml" />
      <Action id="2e726021-e99c-460c-845c-191885a1e4f1" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pptserver.xml" />
      <Action id="00203a08-ae32-4d6b-8a7f-74c5550a9f1a" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pptserver.xml" />
      <Action id="02bf6e41-6e12-4805-9680-100dcd2bd822" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pptserver.xml" />
      <Action id="5132bed8-7326-4ac5-a45d-c65e47d913ef" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pptserver.xml" />
      <Action id="f0ba823b-b461-426c-b336-99059d8a18c5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pptserver.xml" />
      <Action id="9d6483fc-afc1-45b6-8f7b-74e36c6bbe87" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pptserver.xml" />
      <Action id="57a3aede-323c-4f30-9dc0-ab9c0279d569" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.pptserver.xml" />
      <Action id="4e6e31a8-e068-491e-8d32-38da48dcf10a" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.sps.xml" />
      <Action id="59BF77F0-85CC-430d-B93E-F955FD8E8655" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="6EFF9BC8-A42A-4839-BE23-DCB11A5D8AF6" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="D161755D-A843-4C0F-B201-9598D57E18EF" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
      <Action id="282CA3DA-439A-4f7d-BCD1-3EF6B3CC4C25" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\webconfig.dlc.xml" />
    </MergedActions>
    <BlobCache location="C:\BlobCache\14" path="\.(gif|jpg|jpeg|jpe|jfif|bmp|dib|tif|tiff|ico|png|wdp|hdp|css|js|asf|avi|flv|m4v|mov|mp3|mp4|mpeg|mpg|rm|rmvb|wma|wmv)$" maxSize="10" enabled="false" />
    <ObjectCache maxSize="100" />
    <OutputCacheProfiles useCacheProfileOverrides="false" varyByHeader="" varyByParam="*" varyByCustom="" varyByRights="true" cacheForEditRights="false" />
    <RuntimeFilter Assembly="Microsoft.Office.Server, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Class="Microsoft.Office.Server.Audience.AudienceManager" BuilderURL="audience_chooser.aspx" />
  </SharePoint>
  <system.web>
    <securityPolicy>
      <trustLevel name="WSS_Medium" policyFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\wss_mediumtrust.config" />
      <trustLevel name="WSS_Minimal" policyFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\wss_minimaltrust.config" />
      <trustLevel name="WSS_Custom" policyFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\wss_custom_wss_minimaltrust.config" />
    </securityPolicy>
    <httpHandlers />
    <customErrors mode="Off" />
    <httpRuntime maxRequestLength="51200" />
    <authentication mode="Windows" />
    <identity impersonate="true" />
    <authorization>
      <allow users="*" />
    </authorization>
    <httpModules />
    <globalization fileEncoding="utf-8" />
    <compilation batch="false" debug="true" optimizeCompilations="true">
      <assemblies>
        <add assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
        <add assembly="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.SharePoint.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.Office.Access.Server.UI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </assemblies>
      <expressionBuilders>
        <remove expressionPrefix="Resources" />
        <add expressionPrefix="SatelliteResources" type="Microsoft.SharePoint.Search.SPSatelliteResourceExpressionBuilder, Microsoft.SharePoint.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add expressionPrefix="SPUrl" type="Microsoft.SharePoint.Publishing.WebControls.SPUrlExpressionBuilder, Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add expressionPrefix="Resources" type="Microsoft.SharePoint.Search.SPSatelliteResourceExpressionBuilder, Microsoft.SharePoint.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add expressionPrefix="SPHtmlEncodedResources" type="Microsoft.SharePoint.Search.SPHtmlEncodedSatelliteResourceExpressionBuilder, Microsoft.SharePoint.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add expressionPrefix="SPSimpleFormattingEncodedResources" type="Microsoft.SharePoint.Search.SPSimpleFormattingEncodedSatelliteResourceExpressionBuilder, Microsoft.SharePoint.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </expressionBuilders>
      <buildProviders>
        <add extension=".json" type="System.Web.Compilation.WebServiceBuildProvider" />
      </buildProviders>
    </compilation>
    <pages enableSessionState="false" enableViewState="true" enableViewStateMac="true" validateRequest="false" pageParserFilterType="Microsoft.SharePoint.ApplicationRuntime.SPPageParserFilter, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" asyncTimeout="7">
      <namespaces>
        <remove namespace="System.Web.UI.WebControls.WebParts" />
      </namespaces>
      <tagMapping>
        <add tagType="System.Web.UI.WebControls.SqlDataSource, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" mappedTagType="Microsoft.SharePoint.WebControls.SPSqlDataSource, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </tagMapping>
      <controls>
        <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      </controls>
    </pages>
    <siteMap defaultProvider="CurrentNavigation" enabled="true">
      <providers>
        <add name="SPNavigationProvider" type="Microsoft.SharePoint.Navigation.SPNavigationProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="SPSiteMapProvider" type="Microsoft.SharePoint.Navigation.SPSiteMapProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="SPContentMapProvider" type="Microsoft.SharePoint.Navigation.SPContentMapProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="SPXmlContentMapProvider" siteMapFile="_app_bin/layouts.sitemap" type="Microsoft.SharePoint.Navigation.SPXmlContentMapProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="ExtendedSearchXmlContentMapProvider" description="Provider for navigation in Extended Search pages" siteMapFile="_app_bin/layouts.sitemap" type="Microsoft.Office.Server.Search.Extended.Administration.Common.ExtendedSearchXmlContentMapProvider, Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="AdministrationQuickLaunchProvider" description="QuickLaunch navigation provider for the central administration site" type="Microsoft.Office.Server.Web.AdministrationQuickLaunchProvider, Microsoft.Office.Server.UI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="SharedServicesQuickLaunchProvider" description="QuickLaunch navigation provider for shared services administration sites" type="Microsoft.Office.Server.Web.SharedServicesQuickLaunchProvider, Microsoft.Office.Server.UI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="GlobalNavSiteMapProvider" description="CMS provider for Global navigation" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Global" EncodeOutput="true" />
        <add name="CombinedNavSiteMapProvider" description="CMS provider for Combined navigation" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Combined" EncodeOutput="true" />
        <add name="CurrentNavSiteMapProvider" description="CMS provider for Current navigation" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Current" EncodeOutput="true" />
        <add name="CurrentNavSiteMapProviderNoEncode" description="CMS provider for Current navigation, no encoding of output" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Current" EncodeOutput="false" />
        <add name="GlobalNavigation" description="Provider for MOSS Global Navigation" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Combined" Version="14" />
        <add name="CurrentNavigation" description="Provider for MOSS Current Navigation" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Current" Version="14" />
        <add name="SiteDirectoryCategoryProvider" description="Site Directory category provider" type="Microsoft.SharePoint.Portal.WebControls.SiteDirectoryCategoryProvider, Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="MySiteMapProvider" description="MySite provider that returns areas and based on the current user context" type="Microsoft.SharePoint.Portal.MySiteMapProvider, Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="MySiteLeftNavProvider" description="MySite Left Nav provider that returns areas and based on the current user context" type="Microsoft.SharePoint.Portal.MySiteLeftNavProvider, Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="MySiteSubNavProvider" description="MySite Sub Nav provider that returns areas and based on the current user context" type="Microsoft.SharePoint.Portal.MySiteSubNavProvider, Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="ODXMLSiteMapProvider" siteMapFile="_layouts/ODSiteMap.sitemap" type="ErgoGroup.OD.ODXmlSiteMapProvider, ODUtilities, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a0d334afb73e74c8" />
      </providers>
    </siteMap>
    <trust level="WSS_Custom" originUrl="" />
    <webParts>
      <transformers>
        <add name="TransformableFilterValuesToFilterValuesTransformer" type="Microsoft.SharePoint.WebPartPages.TransformableFilterValuesToFilterValuesTransformer, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableFilterValuesToParametersTransformer" type="Microsoft.SharePoint.WebPartPages.TransformableFilterValuesToParametersTransformer, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableFilterValuesToFieldTransformer" type="Microsoft.SharePoint.WebPartPages.TransformableFilterValuesToFieldTransformer, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableBIDataProviderToFilterValuesTransformer" type="Microsoft.PerformancePoint.Scorecards.WebControls.Transforms.TransformableBIDataProviderToFilterValuesTransformer, Microsoft.PerformancePoint.Scorecards.WebControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableBIDataProviderToWebPartParametersTransformer" type="Microsoft.PerformancePoint.Scorecards.WebControls.Transforms.TransformableBIDataProviderToWebPartParametersTransformer, Microsoft.PerformancePoint.Scorecards.WebControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableBIDataProviderTransformer" type="Microsoft.PerformancePoint.Scorecards.WebControls.TransformableBIDataProviderTransformer, Microsoft.PerformancePoint.Scorecards.WebControls, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableFilterValuesToEntityInstanceTransformer" type="Microsoft.SharePoint.Portal.WebControls.TransformableFilterValuesToEntityInstanceTransformer, Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </transformers>
    </webParts>
    <machineKey validationKey="84904AFE1BFEEA4E12F23279D211DDA6530D3D2956E71118" decryptionKey="E04168D0B47F68A8CDBF3589F35DC35A1AF774A2271DED86" validation="SHA1" />
  </system.web>
  <system.webServer>
    <security>
      <requestFiltering allowDoubleEscaping="true">
        <requestLimits maxAllowedContentLength="2147483647" />
      </requestFiltering>
    </security>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true">
      <remove name="AnonymousIdentification" />
      <remove name="FileAuthorization" />
      <remove name="Profile" />
      <remove name="WebDAVModule" />
      <remove name="Session" />
      <add name="SPRequestModule" preCondition="integratedMode" type="Microsoft.SharePoint.ApplicationRuntime.SPRequestModule, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="SharePoint14Module" preCondition="integratedMode" />
      <add name="StateServiceModule" type="Microsoft.Office.Server.Administration.StateModule, Microsoft.Office.Server, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="RSRedirectModule" type="Microsoft.ReportingServices.SharePoint.Soap.RSRedirectModule, RSSharePointSoapProxy, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
      <add name="PublishingHttpModule" type="Microsoft.SharePoint.Publishing.PublishingHttpModule, Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    </modules>
    <handlers>
      <remove name="OPTIONSVerbHandler" />
      <remove name="WebServiceHandlerFactory-Integrated" />
      <remove name="svc-Integrated" />
      <remove name="WebDAV" />
      <add name="svc-Integrated" path="*.svc" verb="*" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode" />
      <add name="OwssvrHandler" scriptProcessor="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\isapi\owssvr.dll" path="/_vti_bin/owssvr.dll" verb="*" modules="IsapiModule" preCondition="integratedMode" />
      <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="JSONHandlerFactory" path="*.json" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" resourceType="Unspecified" preCondition="integratedMode" />
      <add name="ReportViewerWebPart" verb="*" path="Reserved.ReportViewerWebPart.axd" type="Microsoft.ReportingServices.SharePoint.UI.WebParts.WebPartHttpHandler, Microsoft.ReportingServices.SharePoint.UI.WebParts, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
      <add name="ReportViewerWebControl" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
      <add name="Telerik.Web.UI.WebResource.axd_*" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" preCondition="integratedMode" />
    </handlers>
    <staticContent>
      <remove fileExtension=".svg" />
      <mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
    </staticContent>
  </system.webServer>
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
  </system.serviceModel>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.OleDb" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.SoapPT" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.Sts" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.XmlUrl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.intl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Library" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Security" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.OleDb" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.SoapPT" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.Sts" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.XmlUrl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.intl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Library" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Security" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
      </dependentAssembly>
      <qualifyAssembly partialName="Microsoft.SharePoint.WorkflowActions, Version=12.0.0.0, Culture=neutral" fullName="Microsoft.SharePoint.WorkflowActions, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <qualifyAssembly partialName="Microsoft.SharePoint.WorkflowActions, Version=14.0.0.0, Culture=neutral" fullName="Microsoft.SharePoint.WorkflowActions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <probing privatePath="bin;_app_bin" />
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Workflow.Routing" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Workflow.Tasks" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Policy" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Workflow.Feature" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Excel.WebUI" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.infopath" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.infopath.server" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Server" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Server.UI" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.ReportingServices.SharePoint.UI.WebParts" publicKeyToken="89845dcd8080cc91" culture="neutral" />
        <bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.SharePoint.Portal" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.InfoPath" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.InfoPath.Server" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
      </dependentAssembly>
      <dependentassembly>
        <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
        <bindingRedirect oldVersion="1.0.0.0-6.1.7.0" newVersion="6.1.7.0" />
      </dependentassembly>
    </assemblyBinding>
  </runtime>
  <location path="_layouts/images">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="_layouts/mobile/mbllogin.aspx">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="_layouts/mobile/mblmultilogin.aspx">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <System.Workflow.ComponentModel.WorkflowCompiler>
    <authorizedTypes>
      <authorizedType Assembly="System.Workflow.Activities, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="*" Authorized="True" />
      <authorizedType Assembly="System.Workflow.Activities, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="WhileActivity" Authorized="False" />
      <authorizedType Assembly="System.Workflow.Activities, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="ConditionedActivityGroup" Authorized="False" />
      <authorizedType Assembly="System.Workflow.Activities, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="ReplicatorActivity" Authorized="False" />
      <authorizedType Assembly="System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="*" Authorized="True" />
      <authorizedType Assembly="System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.Runtime" TypeName="CorrelationToken" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="Guid" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="DateTime" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="Boolean" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="Double" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="String" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Collections" TypeName="Hashtable" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Collections" TypeName="ArrayList" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Diagnostics" TypeName="DebuggableAttribute" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Runtime.CompilerServices" TypeName="CompilationRelaxationsAttribute" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Runtime.CompilerServices" TypeName="RuntimeCompatibilityAttribute" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="Int32" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="TimeSpan" Authorized="True" />
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Collections.ObjectModel" TypeName="Collection`1" Authorized="True" />
      <authorizedType Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowActivationProperties" Authorized="True" />
      <authorizedType Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowTaskProperties" Authorized="True" />
      <authorizedType Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowHistoryEventType" Authorized="True" />
      <authorizedType Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPItemKey" Authorized="True" />
      <authorizedType Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowUserContext" Authorized="True" />
      <authorizedType Assembly="Microsoft.SharePoint.WorkflowActions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WorkflowActions" TypeName="*" Authorized="True" />
      <authorizedType Assembly="Microsoft.Office.Access.Server.Application, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Access.Server.Macro.Runtime" TypeName="*" Authorized="True" />
      <authorizedType Assembly="Microsoft.Office.Access.Server.Application, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Access.Server.Quickflow.Runtime" TypeName="*" Authorized="True" />
      <authorizedType Assembly="Microsoft.Office.Workflow.Actions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Workflow.Actions" TypeName="*" Authorized="True" />
      <authorizedType Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow" TypeName="*" Authorized="True" />
      <authorizedType Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow" TypeName="*" Authorized="True" />
      <authorizedType Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow" TypeName="*" Authorized="True" />
      <authorizedType Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow" TypeName="*" Authorized="True" />
      <authorizedType Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow" TypeName="*" Authorized="True" />
      <authorizedType Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow" TypeName="*" Authorized="True" />
      <authorizedType Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow" TypeName="*" Authorized="True" />
      <authorizedType Assembly="EdinKapic.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=968b39d77135aa09" Namespace="EdinKapic.SharePoint.Workflow" TypeName="*" Authorized="True" />
    </authorizedTypes>
    <authorizedRuleTypes>
      <authorizedType Assembly="Microsoft.Office.Access.Server.Application, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Access.Server.Quickflow.Runtime" TypeName="*" Authorized="True" />
      <authorizedType Assembly="Microsoft.SharePoint.WorkflowActions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WorkflowActions" TypeName="WorkflowCodeTypeReferenceExpression" Authorized="True" />
      <authorizedType Assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Runtime.CompilerServices" TypeName="ExtensionAttribute" Authorized="True" />
    </authorizedRuleTypes>
  </System.Workflow.ComponentModel.WorkflowCompiler>
  <system.net>
    <defaultProxy useDefaultCredentials="true">
      <proxy usesystemdefault="False" proxyaddress="http://tmg01:8080" bypassonlocal="True" />
    </defaultProxy>
  </system.net>
  <ReportingServices>
    <DataExtensions>
      <add key="ADS" value="Microsoft.Office.Access.Reports.Local.DataProcessing.AdsConnection, Microsoft.Office.Access.Server.Application, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="SHAREPOINTLIST" value="Microsoft.ReportingServices.DataExtensions.SharePointList.SPListConnection, Microsoft.ReportingServices.SharePoint.UI.WebParts, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
    </DataExtensions>
  </ReportingServices>
  <location path="_layouts/UploadEx.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/ctdmsettings.aspx">
    <system.web>
      <httpRuntime executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/policyconfig.aspx">
    <system.web>
      <httpRuntime executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/metanavsettings.aspx">
    <system.web>
      <httpRuntime executionTimeout="3600" />
    </system.web>
  </location>
  <system.web.extensions>
    <scripting>
      <webServices>
        <jsonSerialization maxJsonLength="5000000">
          <converters>
            <add name="TermStoreGenericObjectConverter" type="Microsoft.SharePoint.Taxonomy.WebServices.TermStoreGenericObjectConverter, Microsoft.SharePoint.Taxonomy, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
            <add name="TermStoreGenericObjectConverter" type="Microsoft.SharePoint.Taxonomy.WebServices.TermStoreGenericObjectConverter, Microsoft.SharePoint.Taxonomy, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
            <add name="TermStoreGenericObjectConverter" type="Microsoft.SharePoint.Taxonomy.WebServices.TermStoreGenericObjectConverter, Microsoft.SharePoint.Taxonomy, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
          </converters>
        </jsonSerialization>
      </webServices>
    </scripting>
  </system.web.extensions>
  <location path="_vti_bin/EwaInternalWebService.json">
    <system.web>
      <webServices>
        <protocols>
          <clear />
        </protocols>
      </webServices>
    </system.web>
  </location>
  <location path="_vti_bin/DynamicGridContent.json">
    <system.web>
      <webServices>
        <protocols>
          <clear />
        </protocols>
      </webServices>
    </system.web>
  </location>
  <Bpm>
    <FCODaoProviders>
      <add key="DashboardSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.DashboardSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="DataSourceSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.DataSourceSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="FilterSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.FilterSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="IndicatorSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.IndicatorSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="KpiSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.KpiSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="ReportViewSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.ReportViewSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="ScorecardSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.ScorecardSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    </FCODaoProviders>
  </Bpm>
  <location path="_vti_bin/PPSRenderingService.json">
    <system.web>
      <webServices>
        <protocols>
          <clear />
        </protocols>
      </webServices>
    </system.web>
  </location>
  <reportserver>
    <redirection>
      <exclusions>
        <add path="/_vti_bin/ReportServer/ReportServiceAuthentication.asmx" />
        <add path="/_vti_bin/ReportServer/ReportServiceAuthenticationdisco.aspx" />
        <add path="/_vti_bin/ReportServer/ReportServiceAuthenticationwsdl.aspx" />
      </exclusions>
    </redirection>
  </reportserver>
  <appSettings>
    <add key="MainPageLayoutFileName" value="ODForsideNyhet.aspx" />
    <add key="ODNavigationSite" value="http://odportalen2010/" />
    <add key="PortalUrl" value="http://odportalen2010" />
    <add key="FeedCacheTime" value="300" />
    <add key="FeedPageUrl" value="/_layouts/feed.aspx?" />
    <add key="FeedXsl1" value="/Style Library/Xsl Style Sheets/Rss.xsl" />
    <add key="ReportViewerMessages" value="Microsoft.SharePoint.Portal.Analytics.UI.ReportViewerMessages, Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    <add key="PptServer_Pipe" value="Microsoft.Office.Server.Powerpoint.Pipe.Web.WacPipe, Microsoft.Office.Server.Powerpoint.Pipe.Web, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    <add key="PptServer_BroadcastManager" value="Microsoft.Office.Server.Powerpoint.Web.MossHost.MossBroadcastManager, Microsoft.Office.Server.Powerpoint.Web.MossHost, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    <add key="OD.MailDocument.Receiver" value="postboks@npd.no" />
    <add key="OD.MailDocument.FromAddress" value="odportalen@npd.no" />
    <add key="OD.MailDocument.Body" value="Denne filen ble sendt fra følgende dokumentbibliotek på OD-Portalen: <a href='{0}'>{1}</a>." />
    <add key="ErgoGroup.SiteWizard.SendInvitation" value="false" />
    <add key="ErgoGroup.SiteWizard.VisitorGroup" value="ODPortalen-besøkende" />
    <add key="ErgoGroup.SiteWizard.OwnerPermissionLevel" value="Full kontroll" />
    <add key="ErgoGroup.SiteWizard.MemberPermissionLevel" value="Bidra" />
    <add key="ErgoGroup.SiteWizard.VisitorPermissionLevel" value="Lese" />
  </appSettings>
  <location path="_layouts/FileUpload.ashx">
    <system.web>
      <httpRuntime maxRequestLength="51200" />
    </system.web>
  </location>
  <location path="_layouts/pptInsertPicture.ashx">
    <system.web>
      <httpRuntime maxRequestLength="6144" />
    </system.web>
  </location>
  <location path="_vti_bin/powerpointBroadcastHost.asmx">
    <system.web>
      <httpRuntime maxRequestLength="4" />
    </system.web>
  </location>
  <location path="_vti_bin/powerpointBroadcastHost_1_0.asmx">
    <system.web>
      <httpRuntime maxRequestLength="4" />
    </system.web>
  </location>
  <location path="_vti_bin/present.asmx">
    <system.web>
      <httpRuntime maxRequestLength="4" />
    </system.web>
  </location>
</configuration>
0
Stanimir
Telerik team
answered on 30 Sep 2011, 09:16 AM
Hi Frankok,

The configuration or your web.config file looks OK. What I can suggest you is to try adding the following binding redirect as well:
<dependentAssembly>
    <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" />
    <bindingRedirect oldVersion="1.0.0.0-2011.2.915.35" newVersion="2011.2.915.35" />
</dependentAssembly>



Greetings,
Stanimir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
IT Department
Top achievements
Rank 1
answered on 30 Sep 2011, 12:19 PM
Hi Stanimir,

I tried adding the suggested binding redirect, but unfortunately it did not do any good.
Other suggestions?
0
Stanimir
Telerik team
answered on 05 Oct 2011, 07:31 AM
Hi Frankok,

Send me the ConfigFile.xml and ToolsFile.xml, which are located in the folder C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\wpresources\RadEditorSharePoint\6.1.7.0__1f131a624888eeed\Resources I will review them and advise you further.

Greetings,
Stanimir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
IT Department
Top achievements
Rank 1
answered on 05 Oct 2011, 12:37 PM
Hi,

Here is the content of requested files. They have not been modified after installation.

Toolsfile.xml:

<root>
    <modules>
        <module name="RadEditorDomInspector" />
    </modules>
    <tools>
        <tool name="Cut" shortcut="CTRL+X" />
        <tool name="Copy" shortcut="CTRL+C" />
        <tool name="Paste" shortcut="CTRL+V" />
        <tool name="Undo" shortcut="CTRL+Z" />
        <tool name="Redo" shortcut="CTRL+Y" />
        <tool separator="true" />
        <tool name="FontName" />
        <tool name="FontSize" />
        <tool name="Bold" shortcut="CTRL+B" />
        <tool name="Italic" shortcut="CTRL+I" />
        <tool name="Underline" shortcut="CTRL+U" />
        <tool name="StrikeThrough" />
        <tool name="Subscript" />
        <tool name="Superscript" />
        <tool name="BackColor" />
        <tool name="ForeColor" />
        <tool name="FormatStripper" />
    </tools>
    <tools>
        <tool name="InsertUnorderedList" />
        <tool name="InsertOrderedList" />
        <tool name="Outdent" />
        <tool name="Indent" />
        <tool name="SPLeftToRight" text="Left to Right" />
        <tool name="SPRightToLeft" text="Right to Left" />
        <tool name="JustifyLeft" />
        <tool name="JustifyCenter" />
        <tool name="JustifyRight" />
        <tool name="JustifyFull" />
        <tool separator="true" />
        <tool name="ApplyClass" />
        <tool separator="true" />
        <tool name="AjaxSpellCheck" />
        <tool separator="true" />
        <tool name="FormatBlock" />
        <tool name="InsertHorizontalRule" />
        <tool name="ToggleSource" />
    </tools>
    <tools>
        <tool name="InsertTable" />
        <tool name="ToggleTableBorder" />
        <tool separator="true" />
        <tool name="ImageManager" />
        <tool name="MediaManager" />
        <tool name="FlashManager" />
        <tool separator="true" />
        <tool name="SPLinkManager" text="Insert Link" />
        <tool name="Unlink" />
        <tool separator="true" />
        <tool name="SPTemplateManager" text="Insert Reusable Content" />
        <tool separator="true" />
        <tool name="SPInsertWebPart" text="Insert Web Part"/>
        <tool separator="true" />
        <tool name="Help" />
    </tools>
    <contextMenus>
        <contextMenu forElement="*">
            <tool name="Cut"/>
            <tool name="Copy"/>
            <tool name="Paste"/>
        </contextMenu>
    </contextMenus>
    <classes>
        <class name="Clear Class" value="" />
        <class name="Normal" value=".ms-rteStyle-Normal" />
        <class name="Highlight" value=".ms-rteStyle-Highlight" />
        <class name="By Line" value=".ms-rteStyle-Byline" />
        <class name="Tag Line" value=".rteStyle-Tagline" />
        <class name="Comment" value=".ms-rteStyle-Comment" />
        <class name="References" value=".ms-rteStyle-References" />
        <class name="Caption" value=".ms-rteStyle-Caption" />
    </classes>
    <paragraphs>
        <paragraph name="<H1 class='ms-rteElement-H1'>Heading 1</H1>" value="<H1 class='ms-rteElement-H1'>" />
        <paragraph name="<H2 class='ms-rteElement-H2'>Heading 2</H2>" value="<H2 class='ms-rteElement-H2'>" />
        <paragraph name="<H3 class='ms-rteElement-H3'>Heading 3</H3>" value="<H3 class='ms-rteElement-H3'>" />
        <paragraph name="<H4 class='ms-rteElement-H4'>Heading 4</H4>" value="<H4 class='ms-rteElement-H4'>" />
        <paragraph name="<H1 class='ms-rteElement-H1B'>Colored Heading 1</H1>" value="<H1 class='ms-rteElement-H1B'>" />
        <paragraph name="<H2 class='ms-rteElement-H2B'>Colored Heading 2</H2>" value="<H2 class='ms-rteElement-H2B'>" />
        <paragraph name="<H3 class='ms-rteElement-H3B'>Colored Heading 3</H3>" value="<H3 class='ms-rteElement-H3B'>" />
        <paragraph name="<H4 class='ms-rteElement-H4B'>Colored Heading 4</H4>" value="<H4 class='ms-rteElement-H4B'>" />
        <paragraph name="<p class='ms-rteElement-P'>Paragraph</p>" value="<p class='ms-rteElement-P'>" />
        <paragraph name="<div class='ms-rteElement-Callout1'>Callout 1</div>" value="<div class='ms-rteElement-Callout1'>" />
        <paragraph name="<div class='ms-rteElement-Callout2'>Callout 2</div>" value="<div class='ms-rteElement-Callout2'>" />
        <paragraph name="<div class='ms-rteElement-Callout3'>Callout 3</div>" value="<div class='ms-rteElement-Callout3'>" />
        <paragraph name="<div class='ms-rteElement-Callout4'>Callout 4</div>" value="<div class='ms-rteElement-Callout4'>" />
    </paragraphs>
    <fontNames>
        <item name="Arial" />
        <item name="Calibri" />
        <item name="Comic Sans" />
        <item name="Courier" />
        <item name="Garamond" />
        <item name="Georgia" />
        <item name="Impact" />
        <item name="Lucida Console" />
        <item name="Palatino Linotype" />
        <item name="Times New Roman" />
        <item name="Trebuchet MS" />
        <item name="Verdana" />
    </fontNames>
</root>

ConfigFile.xml:

<?xml version="1.0" encoding="utf-8" ?>
<!-- ==============================================================================================
    Config File valid structure:
    <configuration>
    <property>...</property>
    ...
        <property>
            <item>...</item>
            <item>...</item>
            ...
        </property>
        ...
    </configuration>
=============================================================================================== -->
<configuration>
    <property name="ToolbarMode">ShowOnFocus</property>
    <property name="ToolsWidth">560px</property>
    <property name="ContentAreaMode">Div</property>
    <property name="DocumentsFilters">
        <item>*.*</item>
    </property>
</configuration>
0
Stanimir
Telerik team
answered on 06 Oct 2011, 09:24 AM
Hello Frankok,

I reviewed the provided web.config again and I found the problem. It is a typo in the dependantAssembly element.
Your code is:
<dependentassembly>
        <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
        <bindingRedirect oldVersion="1.0.0.0-6.1.7.0" newVersion="6.1.7.0" />
</dependentassembly>
and it should be:
<dependentAssembly>
        <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
        <bindingRedirect oldVersion="1.0.0.0-6.1.7.0" newVersion="6.1.3.0" />
</dependentAssembly>

dependentassembly should be dependentAssembly (assembly starts with capital A).

I checked our online demo and it looks like there are a couple of typos there:
1. In the example of step 7: dependentassembly should be dependentAssembly
2. In the example of step 8:safecontrol should be SafeControl

I will inform our help team and the help article will be updated ASAP.



All the best,
Stanimir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
IT Department
Top achievements
Rank 1
answered on 07 Oct 2011, 11:01 AM
Hi Stanimir,

It's the Code Block formatter (in this editor) that's removed the camelCasing on the code I provided. In my web.config file, the formatting is as it should be.

Regards,
Frank
0
Stanimir
Telerik team
answered on 13 Oct 2011, 08:57 AM
Hello Frankok,

Could you check the SharePont's logs for additional error details? You can find the logs in the C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS folder.

All the best,
Stanimir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
IT Department
Top achievements
Rank 1
answered on 13 Oct 2011, 01:29 PM

I’ve already checked the ULS logs for SharePoint, but these don’t tell me anymore than “not registered as safe control…”.

0
Stanimir
Telerik team
answered on 19 Oct 2011, 11:46 AM
Hello Frankok,

Here is what you need to make sure when upgrading RadEditor for Sharepoint MOSS/SP2010.

1. Make sure that the correct assemblies are in the GAC. These are Telerik.Web.UI and RadEditorSharePoint.
2. Make sure that RadEditor's configurations files are in place: /Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/RadEditorSharePoint/6.x.x.0__1f131a624888eeed/Resources/ where 6.x.x is the version of RadEditor for SP2010.
3. Make sure that you have the following dependentAssembly in the web.config file
<dependentAssembly>
  <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
  <bindingRedirect oldVersion="1.0.0.0-6.1.7.0" newVersion="6.1.7.0" />
</dependenAassembly>
If you are using Telerik ASP.NET AJAX controls in your site you need to have the dependentAssembly for Telerik.Web.UI as well:
<dependentAssembly>
    <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" />
    <bindingRedirect oldVersion="1.0.0.0-2011.2.915.35" newVersion="2011.2.915.35" />
</dependentAssembly>
3. You need to have SafeControl elements for every version of Telerik.Web.UI you have been previously using:
<SafeControl Assembly="RadEditorSharePoint, Version=6.x.x.x, Culture=neutral, PublicKeyToken=1f131a624888eeed"
    Namespace="Telerik.SharePoint" Typename="*" Safe="True" />
<SafeControl Assembly="RadEditorSharePoint, Version=5.x.x.x, Culture=neutral, PublicKeyToken=1f131a624888eeed"
    Namespace="Telerik.SharePoint" Typename="*" Safe="True" />
<SafeControl Assembly="RadEditorSharePoint, Version=4.x.x.x, Culture=neutral, PublicKeyToken=1f131a624888eeed"
    Namespace="Telerik.SharePoint" Typename="*" Safe="True" />

where d.x.x.x is the version of the control.

This is all.

If the dlls are in the GAC, all the files in /Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/RadEditorSharePoint/6.x.x.0__1f131a624888eeed/Resources/ are there and accessible and the web.config entries are OK there should be no problem.



Kind regards,
Stanimir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
IT Department
Top achievements
Rank 1
answered on 21 Oct 2011, 02:00 PM
Hi,

We have now finally resolved this.

As suspected, there was a typo in the web.config file. One of the binding redirects was specified with all lowercase dependentassembly instead of dependentAssembly.

Here's the correct binding redirects:

      <dependentAssembly>
        <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" culture="neutral" />
        <bindingRedirect oldVersion="1.0.0.0-2011.2.915.35" newVersion="2011.2.915.35" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
        <bindingRedirect oldVersion="1.0.0.0-6.1.7.0" newVersion="6.1.7.0" />
      </dependentAssembly>

Thank you very much for your help! :-)
Tags
WebParts for SharePoint
Asked by
Dasaev
Top achievements
Rank 1
Answers by
Stanimir
Telerik team
John
Top achievements
Rank 1
Dasaev
Top achievements
Rank 1
IT Department
Top achievements
Rank 1
Share this question
or