Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
215 views
hi
when the webpage is postback the treeview , never show which, node is selected before the postback the page.
how to save state tree view node selected, after postback page?
Shinu
Top achievements
Rank 2
 answered on 14 Jul 2014
7 answers
880 views
So been looking at telerik sites to but each time the page comes up as missing for passing values thru query string to radwindow.
What I need to do is this, I need to pass a value into my radwindow to fill out a checkbox list with items that are checked per what region they pick on the radgrid.  So if they pick on a region and it has stations the radwindow will open with those stations already picked in the checkboxlist.   How can I do this. 


<telerik:RadGrid ID="myRadGrid" runat="server" Width="40%" Skin="Web20" CssClass="dvGridWrapper">
           <MasterTableView AutoGenerateColumns="false" Font-Size="10" DataKeyNames="intRegionID" CommandItemDisplay="Top">
               <HeaderStyle ForeColor="White" Font-Bold="true" HorizontalAlign="Center" />
               <ItemStyle HorizontalAlign="Center"/>
               <AlternatingItemStyle BackColor="#B0C4DE"  HorizontalAlign="Center" />
                   <Columns>
                       <telerik:GridEditCommandColumn UniqueName="EditCommandColumn"></telerik:GridEditCommandColumn>
                       <telerik:GridTemplateColumn>
                           <ItemTemplate>
                               <asp:LinkButton ID="lnkAssign" runat="server" CommandArgument='<%# Bind("strRegionCode")%>' Text="Assign Teams" CommandName="Assign" OnClientClick='<%# String.Format("addAdminWin({0}, {1}); return false;", Eval("intRegionID"), 2)%>'></asp:LinkButton>
                           </ItemTemplate>
                       </telerik:GridTemplateColumn>



I am filling out hte Radwindow right now on page load but I need the items checked that actually need to be checked from the reagion that they pick.
Private Sub FIllCb()
      sql = "select t.intTeamID, t.strTeamCode + ' - ' + t.strTeamName + ' (' + r.strRegionCode + ')' from Team as t left outer join Region as r on t.intRegionID = r.intRegionID"
 
      buildDD(sql, cbTeams)
  End Sub

Marin Bratanov
Telerik team
 answered on 14 Jul 2014
5 answers
218 views
Hi,
I'm trying to populate the nestedviewtemplate in my grid..

If I use <# Eval("Code")%> in NestedViewTemplate I've got an error
<telerik:RadGrid ID="HomeRadGrid" runat="server" ClientDataSourceID="RadClientDataSource1"
             EnableEmbeddedSkins="False" AllowPaging="True" AllowSorting="True" AllowFilteringByColumn="True"
             Skin="MySkin" ShowGroupPanel="True" PageSize="10">
             <PagerStyle Mode="NextPrevAndNumeric" />
             <MasterTableView AutoGenerateColumns="False" ClientDataKeyNames="Id" HierarchyLoadMode="Client">                 
                 <NestedViewTemplate>
                     <div class="homeBackground">
                         <div style="float: left; padding-left: 10px; padding-top: 10px">
                             <asp:Image ID="ItemImage" runat="server" ImageUrl='<%# GetItemImageUrl(Container) %>'
                                 Width="150px" meta:resourcekey="ItemImageResource1" />
                         </div>
                         <div style="float: left; padding-left: 10px; width: 50%">
                             <div class="homeTitle">
                                 <asp:Label ID="CodeLabel" runat="server"></asp:Label>
                             </div>
                             <span style="color: #555555">
                                 <asp:Label ID="DescriptionLabel" runat="server"></asp:Label>
                             </span>
                             <hr class="lineSeparator" />
                             <table width="100%" class="homeInfo">
                                 <tr>
                                     <td>
                                         <strong>
                                             <asp:Label ID="SiteLabel" runat="server" meta:resourcekey="SiteLabelResource1">Site</asp:Label>:</strong>
                                         <asp:Label ID="SiteLabel" runat="server"></asp:Label>
                                     </td>
                                 </tr>
                                 <tr>
                                     <td>
                                         <strong>
                                             <asp:Label ID="PlateLabel" runat="server" meta:resourcekey="PlateLabelResource1">Plate</asp:Label>:</strong>
                                         <asp:Label ID="TargaLabel" runat="server"></asp:Label>
                                     </td>
                                 </tr>
                             </table>
                         </div>
                         <div style="float: right; padding-right: 10px; padding-left: 10px; padding-top: 10px">
                             <div style="width: 150px; height: 150px; border: solid 1px black" id='smallmap'>
                             </div>
                         </div>
                         <div style="clear: both">
                         </div>
                     </div>
                 </NestedViewTemplate>
                 <Columns>
                     <telerik:GridBoundColumn DataField="CompanyCode" HeaderText="Company Code" SortExpression="CompanyCode"
                         ShowFilterIcon="false" AutoPostBackOnFilter="True" CurrentFilterFunction="Contains"
                         UniqueName="CompanyCode" Visible="true" meta:resourcekey="GridBoundColumnResource1">
                     </telerik:GridBoundColumn>
                     <telerik:GridBoundColumn DataField="Code" HeaderText="Project" SortExpression="Code"
                         ShowFilterIcon="false" AutoPostBackOnFilter="True" CurrentFilterFunction="Contains"
                         UniqueName="CdcCode" Visible="true" meta:resourcekey="GridBoundColumnResource2">
                     </telerik:GridBoundColumn>
                     <telerik:GridBoundColumn DataField="Site" HeaderText="Site" SortExpression="Site"
                         AutoPostBackOnFilter="True" CurrentFilterFunction="Contains" ShowFilterIcon="false"
                         ItemStyle-Width="50px" FilterControlWidth="30px" UniqueName="Site" Visible="true"
                         meta:resourcekey="GridBoundColumnResource3">
                         <ItemStyle Width="50px"></ItemStyle>
                     </telerik:GridBoundColumn>     
                     ...
                 </Columns>             
             </MasterTableView>
             <ClientSettings ReorderColumnsOnClient="false" AllowDragToGroup="True" AllowColumnsReorder="false">
                 <ClientEvents OnRowDblClick="RowDblClick" OnHierarchyExpanded="LoadSmallMap" OnHierarchyExpanding="CollapseOtherRows">
                 </ClientEvents>
                 <Selecting AllowRowSelect="true"></Selecting>
             </ClientSettings>
         </telerik:RadGrid>

   <telerik:RadClientDataSource ID="RadClientDataSource1" runat="server" AllowBatchOperations="true">
        <ClientEvents OnChange="LoadBigMap" />
        <DataSource>
            <WebServiceDataSourceSettings>
                <Select Url="load_map.asmx/GetHomeData" RequestType="Post" DataType="JSON" ContentType="application/json; charset=utf-8" />
            </WebServiceDataSourceSettings>
        </DataSource>
        <Schema DataName="d">
        </Schema>
        <Schema>
            <Model>
                <telerik:ClientDataSourceModelField FieldName="Id" DataType="Number" />
                <telerik:ClientDataSourceModelField FieldName="CompanyCode" DataType="String" />
                <telerik:ClientDataSourceModelField FieldName="Code" DataType="String" />
                <telerik:ClientDataSourceModelField FieldName="Site" DataType="String" />
...
            </Model>
        </Schema>
    </telerik:RadClientDataSource>

Thanks
Mattia
Top achievements
Rank 2
 answered on 14 Jul 2014
3 answers
295 views
Hi
I'm trying to display an image in a GridImageColumn.
I tried with
DataImageUrlFields="FieldImgUrl"
where FieldImgUrl is a field of my object (FieldImgUrl = "/PHP/icon/accept.png")
but no image is shown
<telerik:GridImageColumn HeaderText="Field1" HeaderTooltip="Field1" AllowFiltering="false"
                       DataImageUrlFields="FieldImgUrl" UniqueName="Field1" ItemStyle-Width="16px" >
                       </telerik:GridImageColumn>


But if I write directly ImageUrl = "/PHP/icon/accept.png" it works...
<telerik:GridImageColumn HeaderText="Field1" HeaderTooltip="Field1" AllowFiltering="false"
                       ImageUrl="/PHP/icon/accept.png" UniqueName="Field1" ItemStyle-Width="16px" >
                       </telerik:GridImageColumn>



Thanks


Viktor Tachev
Telerik team
 answered on 14 Jul 2014
1 answer
152 views
Hi,

is it possible to change the buttons of the Pager (in the bottom of the grid, see attached image) ?


Thank you !

Venelin
Telerik team
 answered on 14 Jul 2014
1 answer
355 views
Hai All,
I am using ajaxtoolkit’s modalpopupextender control to alert user about expiring session.what i need for every 5mins if the site is ideal it will show alert message your seesion is expering if u want to extend if it is ok then u have reset the time like that for that
i wrote my code like this.but dnt knw i am getting error in script its not wroking properly can any one tel me how to do this task

<script type="text/javascript">
            function ShowAlert() {
                $find('mpe_alert').show();
            }
            function hide() {
                $find('mpe_alert').hide();
            }
            function onOk() {
                $find('mpe_alert').hide();
                _doPostBack($find('btnOk'), '')
            }
my .aspx page
<body>
    <form id="form1" runat="server">
        <%--  <asp:ScriptManager ID="ScriptManager1" runat="server" AsyncPostBackTimeout="180" ScriptMode="Release" EnableScriptGlobalization="true" EnablePageMethods="true" >
    </asp:ScriptManager>--%>
        <telerik:RadScriptManager  runat="server" ID="RadScriptManager1" EnablePageMethods="true" />
        <telerik:RadSkinManager ID="QsfSkinManager"  runat="server" Skin="Metro" ShowChooser="false" />
   <asp:HiddenField ID="hdnSessionExpire" runat="server" />
            <cc1:ModalPopupExtender ID="mpe_alert"  runat="server" TargetControlID="hdnSessionExpire"
                PopupControlID="pnlAlert" CancelControlID="btnCancel" OkControlID="btnOk" BehaviorID="mpe_alert"  önOkScript="onOk()">
            </cc1:ModalPopupExtender>
            <asp:Panel ID="pnlAlert" runat="server" Height="100px"
                Style="display: none" Width="250px">
                <table width="100%">
                    <tr>
                        <td align="left" style="font-weight: bold; font-family: Arial">
                            <asp:Label ID="lblSessionAlert" runat="server" Text="Session Expiry Alert"></asp:Label>
                    </tr>
                </table>
                <table>
                    <tr>
                        <td colspan="2">
                            <asp:Label ID="lblMessage" runat="server" Font-Bold="true" Text="Your session is going to expire in 1 minute. Would you like to extend your session?"></asp:Label>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            <br />
                        </td>
                    </tr>
                    <tr>
                        <td align="right">
                            <asp:Button Text="Yes" value="Yes" runat="server" ID="btnOk" />
                        </td>
                        <td align="left">
                            <asp:Button Text="Cancel" value="No" runat="server" ID="btnCancel" />
                        </td>
                    </tr>
                </table>
            </asp:Panel>
  
        </div>
my .cs file in page load 
Session.Timeout = 5;
            int MillisecondsTimeout = (Session.Timeout * 60000) - 120000;
            string strScriptAlert = @"window.setInterval('ShowAlert()' , " + MillisecondsTimeout.ToString() + @");   ";
            ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Alert", strScriptAlert, true);
  
            int Timeout = (Session.Timeout * 60000) - 60000;
            string strScriptHideAlert = @"window.setInterval('hide()' , " + Timeout.ToString() + @");   ";
            ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "HideAlert", strScriptHideAlert, true);
            Response.AppendHeader("Refresh", Convert.ToString((Session.Timeout * 60)) + ";URL=Login.aspx");
Genady Sergeev
Telerik team
 answered on 14 Jul 2014
1 answer
108 views
Hi,

I have a grid. In the CommandItemTemplate, I add a button "Export to Excel". This button has CssClass = "rgxpXLS".

Now, I create a custom skin (from WebBlue) for the grid. Even if I don't touch anything in Visual Style Builder, when I use my custom skin, I lose the image on this button.

In the css file for the grid, for all "command" (Filter, PagePrev, SortAsc, ...), the background image is set to Grid/sprite.gif. Or, if I open this image, I can't see an "Excel" sprite...


I make a mistake ?


Thank you !
Venelin
Telerik team
 answered on 14 Jul 2014
21 answers
581 views
On an ImageButton in the GridEditCommandColumn I cannot set the style as I want it.

The problem is that the <.editbutton:active> does not seem to be applied. That is, the background image does not change
when the button is clicked. On the debug mode the <imgbtn> (look below) does have the cssclass set correctly.

The same exactly setup works fine for an Image Button which is outside the grid.

Any help would be appreciated.


Please take a look on my code below...

The aspx..
.
<telerik:RadGrid ID="grdDetails" ...OnItemDataBound="grdDetails_ItemDataBound"..>
  <MasterTableView...
    <Columns>
    .
      <telerik:GridEditCommandColumn ButtonType="ImageButton"
           UniqueName="EditCommandColumn"
           EditImageUrl="Images/EditBtnTop.png"
            ItemStyle-Width="60px">
      </telerik:GridEditCommandColumn>
    </Columns>

 The StyleSheet file...
.editbutton {
  background-position: center center;
  display: block;
  width: 57px;
  height: 20px;
  background: url("Images/EditBtnTop.png");
  background-repeat: no-repeat;
}
.editbutton:active {
  background: url("Images/EditBtnBotm.png");
  background-repeat: no-repeat;
}

and the code...
 Protected Sub grdDetails_ItemDataBound(sender As Object, e As GridItemEventArgs)
    If TypeOf e.Item Is GridDataItem Then
      Dim dataItem As GridDataItem = DirectCast(e.Item, GridDataItem)
      Dim ImgBtn As ImageButton
      ImgBtn = TryCast(dataItem("EditCommandColumn").Controls(0), ImageButton)
      ImgBtn.CssClass = "editbutton"
      ImgBtn.Width = 57
      ImgBtn = TryCast(dataItem("DeleteCommandColumn").Controls(0), ImageButton)
      ImgBtn.CssClass = "deletebutton"
      ImgBtn.Width = 97
    End If
  End Sub

Angel Petrov
Telerik team
 answered on 14 Jul 2014
1 answer
109 views
Hi All,

I have to call Confirm message when Editbutton click on GridEditCommandColumn.

that is, In ItemCommand event ->CommandName=="Update" -> I will check one condition, if that will be true means , it will show a javascript confirm message.

 if (IsTrue==true)
{
                            Page.ClientScript.RegisterStartupScript(this.GetType(), "alert", "javascript::if(!confirm(Delete the row?));", true);               

      if user click ok 
      {
          //my code
       }
       else
            return;
 }

how to do this?
RajaLakshmi
Top achievements
Rank 1
 answered on 14 Jul 2014
2 answers
217 views
Dears,
i am facing problem in captcha control as i am adding it using custom sharepoint webpart it working fine in my development environment but when i deploy the solution to the farm with load balancer a gray image appears instead of the code.

i read this article http://www.telerik.com/help/aspnet-ajax/captcha-webfarm-and-webgarden.html
but when i apply the solution the image is totally disappeared .

can you please tell me what should i change in my web.config file thanks

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <configSections>
    <sectionGroup name="devExpress">
      <section name="themes" type="DevExpress.Web.ASPxClasses.ThemesConfigurationSection, DevExpress.Web.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" requirePermission="false" />
      <section name="compression" type="DevExpress.Web.ASPxClasses.CompressionConfigurationSection, DevExpress.Web.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" requirePermission="false" />
      <section name="settings" type="DevExpress.Web.ASPxClasses.SettingsConfigurationSection, DevExpress.Web.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" requirePermission="false" />
      <section name="errors" type="DevExpress.Web.ASPxClasses.ErrorsConfigurationSection, DevExpress.Web.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" requirePermission="false" />
    </sectionGroup>
    <sectionGroup name="SharePoint">
      <section name="SafeControls" type="Microsoft.SharePoint.ApplicationRuntime.SafeControlsConfigurationHandler, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <section name="RuntimeFilter" type="System.Configuration.SingleTagSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WebPartLimits" type="System.Configuration.SingleTagSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WebPartCache" type="System.Configuration.SingleTagSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WebPartWorkItem" type="System.Configuration.SingleTagSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WebPartControls" type="System.Configuration.SingleTagSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="SafeMode" type="Microsoft.SharePoint.ApplicationRuntime.SafeModeConfigurationHandler, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <section name="MergedActions" type="System.Configuration.SingleTagSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="PeoplePickerWildcards" type="System.Configuration.NameValueSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="WorkflowServices" type="Microsoft.SharePoint.Workflow.ServiceConfigurationSection, Microsoft.SharePoint, Version=15.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" />
      <section name="MediaAssets" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      <section name="ApplicationAuthentication" type="Microsoft.SharePoint.IdentityModel.ApplicationAuthenticationConfigurationSection, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    </sectionGroup>
    <sectionGroup name="System.Workflow.ComponentModel.WorkflowCompiler" type="System.Workflow.ComponentModel.Compiler.WorkflowCompilerConfigurationSectionGroup, System.Workflow.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
      <section name="authorizedTypes" type="System.Workflow.ComponentModel.Compiler.AuthorizedTypesSectionHandler, System.Workflow.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <section name="authorizedRuleTypes" type="System.Workflow.ComponentModel.Compiler.AuthorizedTypesSectionHandler, System.Workflow.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </sectionGroup>
    <sectionGroup name="microsoft.sharepoint.client">
      <section name="serverRuntime" type="Microsoft.SharePoint.Client.ClientServiceServerRuntimeSection, Microsoft.SharePoint.Client.ServerRuntime, Version=15.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>
    <section name="microsoft.identityModel" type="Microsoft.IdentityModel.Configuration.MicrosoftIdentityModelSection, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  </configSections>
  <microsoft.sharepoint.client>
    <serverRuntime>
      <hostTypes>
        <add type="Microsoft.SharePoint.Client.SPClientServiceHost, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </hostTypes>
    </serverRuntime>
  </microsoft.sharepoint.client>
  <SharePoint>
    <SafeMode MaxControls="200" CallStack="true" DirectFileDependencies="10" TotalFileDependencies="250" AllowPageLevelTrace="false">
      <PageParserPaths>
      </PageParserPaths>
    </SafeMode>
    <WebPartLimits MaxZoneParts="50" PropertySize="1048576" />
    <WebPartCache Storage="CacheObject" />
    <WebPartControls DatasheetControlGuid="65BCBEE4-7728-41a0-97BE-14E1CAE36AAE" />
    <SafeControls>
      <SafeControl Assembly="DevExpress.Web.ASPxGridView.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=B88D1754D700E49A" Namespace="DevExpress.Web.ASPxGridView" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="DevExpress.Web.ASPxEditors.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=B88D1754D700E49A" Namespace="DevExpress.Web.ASPxEditors" TypeName="*" Safe="True" AllowRemoteDesigner="True" SafeAgainstScript="False" />
      <SafeControl Assembly="Telerik.Web.UI, Version=2011.3.1115.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" />
     
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="*" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SearchBox" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SearchBoxEx" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="QueryResultsDateTimeFormatType" />
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="SearchResults" />
      </SafeControls>
    <PeoplePickerWildcards>
      <clear />
      <add key="AspNetSqlMembershipProvider" value="%" />
    </PeoplePickerWildcards>
    <WorkflowServices>
      <WorkflowService Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Class="Microsoft.SharePoint.Workflow.SPWinOEWSSService">
      </WorkflowService>
      <WorkflowService Assembly="Microsoft.SharePoint, Version=15.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\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="e66f3f96-8a99-438e-80c9-4b9f56f95e93" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="bad91a44-2212-487a-9c89-202f6d347a9b" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="cad91a44-2212-487a-9c89-202f6d347a9c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="e66f3f96-8a99-438e-80c9-4b9f56f95e92" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="d40d67d9-9a19-4484-94f6-41d432229c09" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="affcce0e-a70b-4294-a017-e421722f8b42" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="b9c0ea3c-2671-43ee-a9c0-59495dab1d98" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="54746c6e-b00f-4b32-b7e3-d4c8d1ef7c10" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="ae31f688-4253-4bc4-b5b2-6ae55c9f85a1" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="6ee13f04-2c01-46ef-a1cd-b1a8ff7b3ac5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="216ca7b7-07c4-4f20-a39c-2f509a1cd7cc" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSRV.XML" />
      <Action id="5ec079e0-1783-4925-8e26-6ce6d2b02929" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSVC.XML" />
      <Action id="c604b345-5055-47d0-8e93-26f70df80195" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\WEBCONFIG.ACCSVC.XML" />
      <Action id="bf064279-3567-42bf-a34d-0a74f6fe56ca" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="080d803c-e546-40b0-a0ba-35656374993b" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="f1028d1f-0b73-4c70-82ce-508102a5bc76" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="77694774-acef-4d6e-b6f2-5e0298012999" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="23449080-66bb-4a2d-a839-11c2321a7257" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="331f0a61-3f8b-4935-b93f-ef33e4899cc5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="59bf77f0-85cc-430d-b93e-f955fd8e8655" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="cf7eca70-02ec-4ca1-8bd2-8114edb1f88e" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="f79a8155-0950-4503-b019-45f9b801945c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="ee494c88-9a99-4d12-b0c7-c6b80e0e8760" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="aa8989c9-43ad-4738-9ab5-caa75548b82d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="4e3431bb-2815-4084-ade8-6946eed6a437" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="05ed769b-74e7-44a5-bb3f-abbff5b496a2" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="58b1d2b4-5bcc-4ecb-8b33-1633eef80949" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="d2dc85b7-1b73-4f26-afeb-5dbe3d741dc4" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="aea4945e-de82-460e-8885-55d74499ddda" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="3905821d-7eca-4879-909b-90c92f2efb57" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="07233378-c33a-4e45-9a97-933eace119b1" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="f1e7dda2-2a2c-4cc6-88bb-a8088984100e" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="1e6c6fd3-e775-407a-a5c0-bedc60d0075b" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="ee424002-5689-4c14-b453-7404b62729db" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="5832b47d-2c77-4180-b052-7ba039995a80" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.dlc.xml" />
      <Action id="e3b7adae-f5db-4ce5-becb-1af83f7938ce" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="b1a0da76-3505-4256-9a90-dc744bb5a1d3" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="96e4385b-521e-4303-84d6-9acd1375836f" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="c58dd4f4-7da9-493b-8839-862141db04a1" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="13385895-74f7-4f78-8c22-ad59b047eb67" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="380f9878-82e6-4de5-aa4f-dac31b2e80c8" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="d11ac6b1-df0b-459d-94fe-005ab4b3e476" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="8a23edd5-5507-4849-9dcf-c03fd137ba26" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="4c21f1ae-ef75-4de8-a6f8-ee2203042a26" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="b24f415a-4e34-434a-bd9c-5954378022b7" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="6459acaf-1105-4552-8422-dc9f74f05276" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="d8697ce2-18b3-499a-8f32-ff2e0ebac770" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="e242c0d1-21c4-4a5c-87a6-a7eea23b7b1a" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ewr.xml" />
      <Action id="5ef800bc-356e-4c06-a052-dc2ed31b4796" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.filtercontrols.xml" />
      <Action id="0f718bd6-3cfc-4158-97fe-2dbb459e6bc9" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ipfs.xml" />
      <Action id="578263f7-418b-45ab-a887-76c74f121d3c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.mosschart.xml" />
      <Action id="dc53aad8-005b-4537-940b-e3f9bba0a383" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.mosschart.xml" />
      <Action id="166fb4bf-1483-4219-9c7d-1ef0397c202c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osfserver.xml" />
      <Action id="89be315b-a983-44f9-b1ed-d9920cf5528e" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0002-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0003-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0004-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0005-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="0ff1ce14-0001-0006-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="2637af1c-f384-4440-ab0c-e07a2e45f4d5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="d3b25f36-a5d4-4634-8c0d-285a5dfcec37" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="bff41e71-268c-4832-a6b1-e67b1a848646" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="a774fb79-d138-41e6-bf9e-20fb5a866e24" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.osrv.xml" />
      <Action id="a093e8c6-ba89-4811-a891-e63e3eebb188" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.pps.xml" />
      <Action id="c367ae4a-27df-4f01-84b8-e0296be6aaea" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.pps.xml" />
      <Action id="ad2bf40d-04a5-4a1e-b6cd-1c6384b9882f" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.pps.xml" />
      <Action id="da8363d7-c510-4424-a0ca-579399ada746" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.pps.xml" />
      <Action id="4788a8f6-fe31-4e7a-ab91-50dffc279767" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.pps.xml" />
      <Action id="95714573-dc40-434e-87e3-c04fe1c841d3" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.pps.xml" />
      <Action id="5e33d0a9-b7d0-4d04-acbb-ac5871b51aba" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.pps.xml" />
      <Action id="d64efb60-5562-471c-bbdf-341327a6d902" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.pps.xml" />
      <Action id="31114d0d-ae7c-45ef-a5fc-9b15dbd90677" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.prfpgs.xml" />
      <Action id="fc002d03-7839-402b-a94a-1c9a2d40b63d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="cd6122b2-5c40-45fb-952b-908354a91e33" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="743c7ec7-2e3f-47d8-a636-e0f5d873971d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="7577e2f1-78ef-4c08-b861-c151ce35e938" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="380b065c-1af9-41f9-af72-cd99902caf69" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="2365277a-c5ee-4589-84d4-c759e6b9477d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="b879238f-de6a-4766-bf2f-1f4348b0e900" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="7383fb3f-8d4d-48af-82bd-b06a00a8f9ef" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="073a3eb8-eb71-4005-aced-f62037cec7c1" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="0582988f-9c26-4990-8672-0099f4567b03" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="9008b35c-3ad5-4831-bcbe-ec456a4e152b" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="009e5494-26c5-4181-936f-4d16f444b642" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="0b2e0644-3625-484c-a873-3d3dbd16a544" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="4427b8cd-886a-4f31-b6c5-17c335f78e26" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="4cca960b-247e-4743-9f4b-835975e867f9" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="7fd9ed44-102a-40e5-a443-f72142f6f123" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="5552b985-f1b8-4647-83e1-97a3a8d5ca60" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="5f75013a-2a71-40c5-a77c-c39a97365ba3" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="72db2c92-8bc1-4767-a12c-94b67d46d0cf" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="4cc2777f-e9ed-4af4-acbb-9f101f64e4d6" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="0f86d652-9f24-458b-b14d-7b6c24c3de02" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="c7b086d1-e557-444b-b22c-dfbbe4cbd258" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="0062fbdd-563b-47bf-938f-6e180685ed7c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="0cf9c84f-9cb0-4e58-aab5-dc18a6a6d1da" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="13662f04-958a-44cd-8079-4c588eb47bcf" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sps.xml" />
      <Action id="eaa3e0c0-973a-4dbd-96e9-48f7837a8909" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1002-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1003-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1004-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1005-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1006-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1007-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1007-0001-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1007-0002-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1008-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1009-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100a-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100b-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100c-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100d-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100e-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-100f-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="cc34a1f6-0355-4b09-8082-16e1d932c3b5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="addf3cf3-7b36-4f03-b37a-fa88feb01b96" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="dadad238-579b-4ae8-a8c3-e0a411dca5a3" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="fd2c3311-61ba-41e2-90a9-ab9291da5922" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="ce3ad5fe-e8b2-48d6-adaf-a06bddf2ac15" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="2732769a-0d45-4bb4-8bf5-c94c74259c9c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1010-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1011-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1012-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1014-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1015-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1016-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1017-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101f-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="5055b13f-c200-45dd-8dbd-b046710e01ac" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="2ac909bc-29ed-42dd-8b47-548a927c3501" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="ea2d54ca-cd14-48a7-a5ca-b10b24141937" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1019-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101a-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101b-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101c-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101d-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-101e-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1020-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="0ff1ce14-1021-0000-0000-000000000000" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="903d00d7-66c2-4048-90dd-7b2cfac0598c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="42b68da7-7383-4c3c-a288-995814fc9780" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="b3112355-b968-447b-ad94-ab0e170646b7" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.spss.xml" />
      <Action id="ec0076ac-0c35-4880-8422-8062f5925bec" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ss.xml" />
      <Action id="b512390b-d1f6-411d-8702-4a8d5a144684" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.ss.xml" />
      <Action id="f685f789-7fd9-4ca1-8b9f-add3fcee0aa7" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sso.xml" />
      <Action id="90876623-22e3-4802-906a-1f03f84cc9ab" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.sso.xml" />
      <Action id="602bc8c3-9286-49a3-b973-3376ca78b297" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.taxonomy.xml" />
      <Action id="2a3509fb-7114-47f8-8a56-42dbfefbe197" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.taxonomy.xml" />
      <Action id="00e22a78-33ff-41ac-b0fb-ee46d1636e22" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.taxonomy.xml" />
      <Action id="4b60e42e-e6fc-4188-80d2-ef39e7cc0065" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.vwa.xml" />
      <Action id="f3b7f917-266c-4bfe-8ccd-f98b9dd14305" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.vwa.xml" />
      <Action id="9d4118fd-719d-468d-aba4-6f55fc0c9f2b" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.webanalytics.xml" />
      <Action id="1d415973-1146-4bc2-8324-83dfff5bfe33" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.webanalytics.xml" />
      <Action id="36560584-e722-41cd-9454-3959674e511e" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.wma.xml" />
      <Action id="6bef1870-934a-45e0-9b22-dd5fb3de32c5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.x_education.xml" />
      <Action id="1b42bd44-fa5b-449b-a41a-b665bf617716" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.x_education.xml" />
      <Action id="ad8b2490-9638-44bf-97f9-0a4664f42fba" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\webconfig.x_education.xml" />
      <Action id="050625c3-ca5c-45c1-a7f5-34e35083ab1d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="5aef7a32-921b-461b-ad95-2edd783a0373" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="d3f7d059-7211-41de-a30e-b5c772ac0e9d" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="b9c82a06-6c2c-4a74-8a83-756fb3f0a359" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="60fabc76-8248-4cf1-bc1f-b1d2f4419eef" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="fec81041-db52-4e8a-a0c5-ca3b0e49b506" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="349c423c-1655-451a-9cfa-a0f852a1745c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="a9d2e27f-e624-433a-917e-44595767222f" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="448f0058-39fc-4fb0-8b45-60d26a73d676" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="c4d46202-a23b-46a6-b483-27313dd5ff90" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="1aafd16b-9e1b-462e-aec3-1e55d352f47c" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="32cbfce1-e2b3-4cbe-865f-42c4a48daa05" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="85701841-f843-44d0-b0d4-966002a74495" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="497db00c-5ec0-4e9a-a5c5-044a11d7a78a" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="ff4e6def-0670-4d04-945c-95503b1628be" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="eb7aaf5e-585b-412c-aa35-359b7ff5e52f" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="2ceccd11-a856-48db-95e2-511d508809d5" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="c9f31846-3389-4ac3-bf8c-450e1fe70289" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="9b90a47e-90de-4929-b7d3-69c8b4e61b59" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="7ab4855f-7a05-48ee-bc6e-f5df190a5bc2" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
      <Action id="71c5eb24-9e8e-4006-827a-28fefd58465e" sourceFile="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\config\identitymodel\webconfig.identitymodel.add.xml" />
    </MergedActions>
    <BlobCache location="C:\BlobCache\14" path="\.(gif|jpg|jpeg|jpe|jfif|bmp|dib|tif|tiff|themedbmp|themedcss|themedgif|themedjpg|themedpng|ico|png|wdp|hdp|css|js|asf|avi|flv|m4v|mov|mp3|mp4|mpeg|mpg|rm|rmvb|wma|wmv|ogg|ogv|oga|webm|xap)$" maxSize="10" enabled="false" />
    <ObjectCache maxSize="100" />
    <OutputCacheProfiles useCacheProfileOverrides="false" varyByHeader="" varyByParam="*" varyByCustom="" varyByRights="true" cacheForEditRights="false" />
    <MediaAssets mediaFileExtensions="wmv,wma,avi,mpg,mp3,mp4,asf,ogg,ogv,oga,webm" silverlightMediaFileExtensions="wmv,wma,mp3,mp4,asf" html5AudioFileExtensions="wav,wma,mp3,oga" imageFileExtensions="gif,jpeg,jpg,jpe,jfif,bmp,dib,png,tif,tiff,ico,wdp,hdp" />
    <RuntimeFilter Assembly="Microsoft.Office.Server, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Class="Microsoft.Office.Server.Audience.AudienceManager" BuilderURL="audience_chooser.aspx" />
  </SharePoint>
  <system.web>
    <httpHandlers />
    <customErrors mode="Off" />
    <httpRuntime maxRequestLength="51200" requestValidationMode="2.0" />
    <authentication mode="Forms">
      <forms loginUrl="/_login/default.aspx" />
    </authentication>
    <identity impersonate="true" password="123" userName="pscc\appadmin" />
    <authorization>
      <allow users="?" />
      <allow users="*" />
    </authorization>
    <httpModules>
      <add name="FederatedAuthentication" type="Microsoft.SharePoint.IdentityModel.SPFederationAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="SessionAuthentication" type="Microsoft.SharePoint.IdentityModel.SPSessionAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="SPApplicationAuthentication" type="Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="SPWindowsClaimsAuthentication" type="Microsoft.SharePoint.IdentityModel.SPWindowsClaimsAuthenticationHttpModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add type="DevExpress.Web.ASPxClasses.ASPxHttpHandlerModule, DevExpress.Web.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" name="ASPxHttpHandlerModule" />
    </httpModules>
    <globalization fileEncoding="utf-8" />
    <compilation>
      <assemblies>
        <add assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
        <add assembly="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.SharePoint.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.Office.Access.Server.UI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.Office.Access.Services.UI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.Office.Server.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
        <add assembly="Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add assembly="DevExpress.Web.ASPxGridView.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=B88D1754D700E49A" />
        <add assembly="DevExpress.Web.ASPxEditors.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=B88D1754D700E49A" />
        <add assembly="DevExpress.Web.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=B88D1754D700E49A" />
        <add assembly="DevExpress.Data.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=B88D1754D700E49A" />
        <add assembly="Telerik.Web.UI.Skins, Version=2011.3.1115.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" />
        <add assembly="Telerik.Web.UI, Version=2011.3.1115.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" />
        <add assembly="Telerik.Web.Design, Version=2011.3.1115.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" />
      </assemblies>
      <expressionBuilders>
        <remove expressionPrefix="Resources" />
        <add expressionPrefix="SatelliteResources" type="Microsoft.SharePoint.Search.SPSatelliteResourceExpressionBuilder, Microsoft.SharePoint.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add expressionPrefix="SPTokens" type="Microsoft.SharePoint.SPTokenExpressionBuilder, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add expressionPrefix="SPUrl" type="Microsoft.SharePoint.Publishing.WebControls.SPUrlExpressionBuilder, Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add expressionPrefix="Resources" type="Microsoft.SharePoint.Search.SPSatelliteResourceExpressionBuilder, Microsoft.SharePoint.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add expressionPrefix="SPHtmlEncodedResources" type="Microsoft.SharePoint.Search.SPHtmlEncodedSatelliteResourceExpressionBuilder, Microsoft.SharePoint.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add expressionPrefix="SPSimpleFormattingEncodedResources" type="Microsoft.SharePoint.Search.SPSimpleFormattingEncodedSatelliteResourceExpressionBuilder, Microsoft.SharePoint.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </expressionBuilders>
      <buildProviders>
        <add extension=".json" type="System.Web.Compilation.WebServiceBuildProvider" />
      </buildProviders>
    </compilation>
    <pages theme="SkinFile" enableSessionState="true" enableViewState="true" enableViewStateMac="true" validateRequest="false" clientIDMode="AutoID" pageParserFilterType="Microsoft.SharePoint.ApplicationRuntime.SPPageParserFilter, Microsoft.SharePoint, Version=15.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=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" mappedTagType="Microsoft.SharePoint.WebControls.SPSqlDataSource, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </tagMapping>
      <controls>
        <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
        <add tagPrefix="spsswc" namespace="Microsoft.Office.Server.Search.WebControls" assembly="Microsoft.Office.Server.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </controls>
    </pages>
    <siteMap defaultProvider="CurrentNavigation" enabled="true">
      <providers>
        <add name="SPNavigationProvider" type="Microsoft.SharePoint.Navigation.SPNavigationProvider, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="SPSiteMapProvider" type="Microsoft.SharePoint.Navigation.SPSiteMapProvider, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="SPContentMapProvider" type="Microsoft.SharePoint.Navigation.SPContentMapProvider, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="SPXmlContentMapProvider" siteMapFile="_app_bin/layouts.sitemap" type="Microsoft.SharePoint.Navigation.SPXmlContentMapProvider, Microsoft.SharePoint, Version=15.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=15.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=15.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=15.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=15.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=15.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=15.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=15.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=15.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=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="MySitePersonalQuickLaunchProvider" description="MySite personal quick launch provider" type="Microsoft.SharePoint.Portal.MySitePersonalQuickLaunchProvider, Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="MySiteHostTopNavigationProvider" description="MySite host top navigation provider" type="Microsoft.SharePoint.Portal.MySiteHostTopNavigationProvider, Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="GlobalNavigationSwitchableProvider" description="Provider for MOSS Global Navigation, which maps to GlobalNavigation or GlobalNavigationTaxonomyProvider according to Navigation Settings" type="Microsoft.SharePoint.Publishing.Navigation.SwitchableSiteMapProvider, Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" DefaultTargetProviderName="GlobalNavigation" Version="15" />
        <add name="CurrentNavigationSwitchableProvider" description="Provider for MOSS Current Navigation, which maps to GlobalNavigation or CurrentNavigationTaxonomyProvider according to Navigation Settings" type="Microsoft.SharePoint.Publishing.Navigation.SwitchableSiteMapProvider, Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Version="15" DefaultTargetProviderName="CurrentNavigation" />
        <add name="GlobalNavigationTaxonomyProvider" description="Provider for MOSS Global Navigation, driven by the Taxonomy feature" type="Microsoft.SharePoint.Publishing.Navigation.TaxonomySiteMapProvider, Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Version="15" />
        <add name="CurrentNavigationTaxonomyProvider" description="Provider for MOSS Global Navigation, driven by the Taxonomy feature" type="Microsoft.SharePoint.Publishing.Navigation.TaxonomySiteMapProvider, Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Version="15" />
        <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=15.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=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="MySiteDocumentStaticProvider" description="MySite Document library provider that returns static links to lists in the site" type="Microsoft.SharePoint.Portal.MySiteDocumentStaticProvider, Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="MySiteSitesPageStaticProvider" description="MySite Document library provider that returns static links to lists on the Sites page" type="Microsoft.SharePoint.Portal.MySiteSitesPageStaticProvider, Microsoft.SharePoint.Portal, Version=15.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=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="EduTopNavProvider" description="Top Nav Site Map Provider for Education My Site Host" type="Microsoft.Office.Education.WebUI.EduTopNavProvider, Microsoft.Office.Education.WebUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="MySiteHostQuickLaunchProvider" description="Quick Launch Site Map Provider for Education My Site Host" type="Microsoft.Office.Education.WebUI.EduQuickLaunchProvider, Microsoft.Office.Education.WebUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </providers>
    </siteMap>
    <trust level="Full" originUrl="" legacyCasModel="true" />
    <webParts>
      <transformers>
        <add name="TransformableFilterValuesToFilterValuesTransformer" type="Microsoft.SharePoint.WebPartPages.TransformableFilterValuesToFilterValuesTransformer, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableFilterValuesToParametersTransformer" type="Microsoft.SharePoint.WebPartPages.TransformableFilterValuesToParametersTransformer, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableFilterValuesToFieldTransformer" type="Microsoft.SharePoint.WebPartPages.TransformableFilterValuesToFieldTransformer, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableBIDataProviderToFilterValuesTransformer" type="Microsoft.PerformancePoint.Scorecards.WebControls.Transforms.TransformableBIDataProviderToFilterValuesTransformer, Microsoft.PerformancePoint.Scorecards.WebControls, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableBIDataProviderToWebPartParametersTransformer" type="Microsoft.PerformancePoint.Scorecards.WebControls.Transforms.TransformableBIDataProviderToWebPartParametersTransformer, Microsoft.PerformancePoint.Scorecards.WebControls, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableBIDataProviderTransformer" type="Microsoft.PerformancePoint.Scorecards.WebControls.TransformableBIDataProviderTransformer, Microsoft.PerformancePoint.Scorecards.WebControls, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        <add name="TransformableFilterValuesToEntityInstanceTransformer" type="Microsoft.SharePoint.Portal.WebControls.TransformableFilterValuesToEntityInstanceTransformer, Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </transformers>
    </webParts>
    <machineKey validationKey="D56E059C8216982FFABBA8E1EDD0D81DD455A92E81290FC7111A07E05FA987DD" decryptionKey="0322727F4E6859DDE2112925289EBF01C647BE0DFE64F868BCAF564B51A2738D" validation="HMACSHA256" />
    <membership defaultProvider="i">
      <providers>
        <add name="i" type="Microsoft.SharePoint.Administration.Claims.SPClaimsAuthMembershipProvider, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </providers>
    </membership>
    <roleManager defaultProvider="c" enabled="true" cacheRolesInCookie="false">
      <providers>
        <add name="c" type="Microsoft.SharePoint.Administration.Claims.SPClaimsAuthRoleProvider, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </providers>
    </roleManager>
    <sessionState mode="SQLServer" timeout="120" allowCustomSqlDatabase="true" sqlConnectionString="Data Source=InterDBCluster\InterDB;Initial Catalog=internetSession;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Connect Timeout=15" />
  </system.web>
  <system.webServer>
    <httpProtocol>
      <customHeaders>
        <add name="X-Content-Type-Options" value="nosniff" />
        <add name="X-MS-InvokeApp" value="1; RequireReadOnly" />
      </customHeaders>
    </httpProtocol>
    <security>
      <requestFiltering allowDoubleEscaping="true">
        <fileExtensions>
          <clear />
        </fileExtensions>
        <hiddenSegments>
          <clear />
        </hiddenSegments>
        <requestLimits maxAllowedContentLength="2147483647" />
      </requestFiltering>
      <authorization>
        <add accessType="Allow" users="?" />
      </authorization>
    </security>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true">
      <remove name="AnonymousIdentification" />
      <remove name="FileAuthorization" />
      <remove name="Profile" />
      <remove name="WebDAVModule" />
      <remove name="Session" />
      <add name="SPNativeRequestModule" preCondition="integratedMode" />
      <add name="SPRequestModule" preCondition="integratedMode" type="Microsoft.SharePoint.ApplicationRuntime.SPRequestModule, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="SharePoint14Module" preCondition="integratedMode" />
      <add name="StateServiceModule" type="Microsoft.Office.Server.Administration.StateModule, Microsoft.Office.Server, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="PublishingHttpModule" type="Microsoft.SharePoint.Publishing.PublishingHttpModule, Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="DesignHttpModule" preCondition="integratedMode" type="Microsoft.SharePoint.Publishing.Design.DesignHttpModule, Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="FederatedAuthentication" type="Microsoft.SharePoint.IdentityModel.SPFederationAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="SessionAuthentication" type="Microsoft.SharePoint.IdentityModel.SPSessionAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="SPWindowsClaimsAuthentication" type="Microsoft.SharePoint.IdentityModel.SPWindowsClaimsAuthenticationHttpModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add name="SPApplicationAuthentication" type="Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add type="DevExpress.Web.ASPxClasses.ASPxHttpHandlerModule, DevExpress.Web.v12.1, Version=12.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" name="ASPxHttpHandlerModule" />
      <add name="Session" type="System.Web.SessionState.SessionStateModule" />
    </modules>
    <handlers>
      <remove name="OPTIONSVerbHandler" />
      <remove name="WebServiceHandlerFactory-Integrated" />
      <remove name="WebDAV" />
      <add name="OwssvrHandler" scriptProcessor="C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\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=4.0.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=4.0.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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="ChartImg" verb="*" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="JSONHandlerFactory" path="*.json" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" resourceType="Unspecified" preCondition="integratedMode" />
      <add name="CrossDomainAjaxOptions" verb="OPTIONS" path="CrossDomainAjax.ashx" resourceType="Unspecified" preCondition="integratedMode" type="Microsoft.Office.Excel.WebUI.CrossDomainAjax, Microsoft.Office.Excel.WebUI.Internal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <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" />
      <remove name="ExtensionlessUrl-ISAPI-4.0_64bit" />
      <remove name="ExtensionlessUrl-ISAPI-4.0_32bit" />
      <remove name="ExtensionlessUrl-Integrated-4.0" />
      <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
      <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
      <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
      <add name="Telerik.Web.UI.WebResource.axd_*" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2011.3.1115.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode" />
    </handlers>
  </system.webServer>
  <devExpress>
    <themes enableThemesAssembly="true" styleSheetTheme="" theme="" />
    <compression enableHtmlCompression="false" enableCallbackCompression="true" enableResourceCompression="true" enableResourceMerging="true" />
    <settings rightToLeft="false" />
    <errors callbackErrorRedirectUrl="" />
  </devExpress>
  <!--PSCC Services-->
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
    <bindings>
      <basicHttpBinding>
        <binding name="BasicHttpBinding_IPatient" />
        <binding name="BasicHttpBinding_IRequest" />
        <binding name="BasicHttpBinding_IVendor" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" />
        <binding name="BasicHttpBinding_IHR" />
      </basicHttpBinding>
      <wsHttpBinding>
        <binding name="WSHttpBinding_ISMS">
          <security mode="Message">
            <transport clientCredentialType="Windows" />
            <message clientCredentialType="Windows" />
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://server01/WCF/HR/Service.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IHR" contract="HRService.IHR" name="BasicHttpBinding_IHR" />
      <endpoint address="http://server01/WCF/PA/Normal/Service.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IPatient" contract="PService.IPatient" name="BasicHttpBinding_IPatient" />
      <endpoint address="http://server01/WCF/Common/Requests/Normal/Service.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IRequest" contract="PRequest.IRequest" name="BasicHttpBinding_IRequest" />
      <endpoint address="http://server01/WCF/Common/SMS/Service.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ISMS" contract="PSMS.ISMS" name="WSHttpBinding_ISMS">
        <identity>
          <servicePrincipalName value="host/server01.PSCC.LOCAL" />
        </identity>
      </endpoint>
      <endpoint address="http://server01.pscc.local/WCF/Vendor/Service.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IVendor" contract="VService.IVendor" name="BasicHttpBinding_IVendor" />
    </client>
  </system.serviceModel>
  <!--PSCC Services-->
  <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="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.OleDb" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.SoapPT" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.Sts" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.XmlUrl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.intl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Library" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="11.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.OleDb" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.SoapPT" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.Sts" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.XmlUrl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.intl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Library" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="12.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.AddGallery.Server" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.ApplicationPages" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.ApplicationPages.Administration" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.OleDb" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.SoapPT" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.Sts" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.XmlUrl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.intl" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SharePoint.Library" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="4.0.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" />
      <qualifyAssembly partialName="Microsoft.SharePoint.WorkflowActions, Version=15.0.0.0, Culture=neutral" fullName="Microsoft.SharePoint.WorkflowActions, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <probing privatePath="bin;_app_bin" />
      <qualifyAssembly partialName="Microsoft.Office.Access.Server.Application, Version=14.0.0.0, Culture=neutral" fullName="Microsoft.Office.Access.Server.Application, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" xmlns="urn:schemas-microsoft-com:asm.v1" />
      <qualifyAssembly partialName="Microsoft.Office.Workflow.Actions, Version=14.0.0.0, Culture=neutral" fullName="Microsoft.Office.Workflow.Actions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" xmlns="urn:schemas-microsoft-com:asm.v1" />
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.DocumentManagement.Pages" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Policy.Pages" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Workflow.Pages" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.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="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Excel.WebUI" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Excel.WebUI.Internal" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Excel.WebUI.Mobile" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Excel.Server.WebServices" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Server.Chart" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="System.Web.DataVisualization" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="3.5.0.0" newVersion="4.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="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Server.UI" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Common.Calculation" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.BIMonitoringService" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.Client" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.Common" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.DataSourceProviders.Standard" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.Script" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.Server" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.ServerCommon" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.ServerRendering" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.Store" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.Upgrade" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.WebControls" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.PerformancePoint.Scorecards.WebServer" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.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="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.SharePoint.ClientExtensions" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.SecureStoreService" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.SecureStoreService.Server.Security" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
        <assemblyIdentity name="Microsoft.Office.Server.WebAnalytics.UI" publicKeyToken="71e9bce111e9429c" culture="neutral" />
        <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  <location path="_catalogs">
    <system.web>
      <authorization>
        <allow users="?" />
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="_layouts/images">
    <system.web>
      <authorization>
        <allow users="?" />
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="_layouts/15/images">
    <system.web>
      <authorization>
        <allow users="?" />
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="Style%20Library/Items/images-en">
    <system.web>
      <authorization>
        <allow users="?" />
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="_layouts/15/mobile/mbllogin.aspx">
    <system.web>
      <authorization>
        <allow users="*" />
        <allow users="?" />
      </authorization>
    </system.web>
  </location>
  <location path="_layouts/15/mobile/mblmultilogin.aspx">
    <system.web>
      <authorization>
        <allow users="*" />
        <allow users="?" />
      </authorization>
    </system.web>
  </location>
  <location path="_layouts/15/AppMonitoringDetails.aspx">
    <appSettings>
      <add key="ChartImageHandler" value="storage=memory;timeout=20" />
    </appSettings>
  </location>
  <location path="_admin/CA_AppMonitoringDetails.aspx">
    <appSettings>
      <add key="ChartImageHandler" value="storage=memory;timeout=20" />
    </appSettings>
  </location>
  <location path="_layouts/15/TA_AppMonitoringDetails.aspx">
    <appSettings>
      <add key="ChartImageHandler" value="storage=memory;timeout=20" />
    </appSettings>
  </location>
  <System.Workflow.ComponentModel.WorkflowCompiler>
    <authorizedTypes>
      <targetFx version="v4.0">
        <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.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="WorkflowCompiler" Authorized="False" />
        <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="System.Workflow.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="*" Authorized="True" />
        <authorizedType Assembly="System.Workflow.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="WhileActivity" Authorized="False" />
        <authorizedType Assembly="System.Workflow.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="ConditionedActivityGroup" Authorized="False" />
        <authorizedType Assembly="System.Workflow.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="ReplicatorActivity" Authorized="False" />
        <authorizedType Assembly="System.Workflow.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="*" Authorized="True" />
        <authorizedType Assembly="System.Workflow.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="WorkflowCompiler" Authorized="False" />
        <authorizedType Assembly="System.Workflow.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.Runtime" TypeName="CorrelationToken" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="Guid" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="DateTime" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="Boolean" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="Double" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="String" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Collections" TypeName="Hashtable" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Collections" TypeName="ArrayList" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Diagnostics" TypeName="DebuggableAttribute" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Runtime.CompilerServices" TypeName="CompilationRelaxationsAttribute" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Runtime.CompilerServices" TypeName="RuntimeCompatibilityAttribute" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="Int32" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System" TypeName="TimeSpan" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Collections.ObjectModel" TypeName="Collection`1" Authorized="True" />
        <authorizedType Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowActivationProperties" Authorized="True" />
        <authorizedType Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowTaskProperties" Authorized="True" />
        <authorizedType Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowHistoryEventType" Authorized="True" />
        <authorizedType Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPItemKey" Authorized="True" />
        <authorizedType Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowUserContext" Authorized="True" />
        <authorizedType Assembly="Microsoft.SharePoint.WorkflowActions, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WorkflowActions" TypeName="*" Authorized="True" />
        <authorizedType Assembly="Microsoft.Office.Access.Server.Application, Version=15.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=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Access.Server.Quickflow.Runtime" TypeName="*" Authorized="True" />
        <authorizedType Assembly="Microsoft.Office.Workflow.Actions, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Workflow.Actions" TypeName="*" Authorized="True" />
      </targetFx>
    </authorizedTypes>
    <authorizedRuleTypes>
      <targetFx version="v4.0">
        <authorizedType Assembly="Microsoft.Office.Access.Server.Application, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Access.Server.Quickflow.Runtime" TypeName="*" Authorized="True" />
        <authorizedType Assembly="Microsoft.SharePoint.WorkflowActions, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WorkflowActions" TypeName="WorkflowCodeTypeReferenceExpression" Authorized="True" />
        <authorizedType Assembly="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Runtime.CompilerServices" TypeName="ExtensionAttribute" Authorized="True" />
        <authorizedType Assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System.Runtime.CompilerServices" TypeName="ExtensionAttribute" Authorized="True" />
      </targetFx>
    </authorizedRuleTypes>
  </System.Workflow.ComponentModel.WorkflowCompiler>
  <system.net>
    <mailSettings>
      <smtp>
        <network host="mail.pscc.med.sa" port="25" userName="eservice@pscc.med.sa" password="123" />
      </smtp>
    </mailSettings>
    <defaultProxy />
  </system.net>
  <appSettings>
    <add key="aspnet:RestrictXmlControls" value="true" />
    <add key="FeedCacheTime" value="300" />
    <add key="FeedPageUrl" value="/_layouts/15/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=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    <add key="aspnet:AllowAnonymousImpersonation" value="true" />
    <add key="AdminMail" value="info@pscc.med.sa" />
  </appSettings>
  <ReportingServices>
    <DataExtensions>
      <add key="ADS" value="Microsoft.Office.Access.Reports.Local.DataProcessing.AdsConnection, Microsoft.Office.Access.Server.Application, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    </DataExtensions>
  </ReportingServices>
  <location path="_layouts/UploadEx.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/15/UploadEx.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/NewVideoSet.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/15/NewVideoSet.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/15/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/15/policyconfig.aspx">
    <system.web>
      <httpRuntime executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/metanavsettings.aspx">
    <system.web>
      <httpRuntime executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/15/metanavsettings.aspx">
    <system.web>
      <httpRuntime executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/15/SendToOfficialFile.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=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
          </converters>
        </jsonSerialization>
      </webServices>
    </scripting>
  </system.web.extensions>
  <location path="_vti_bin/EwaInternalWebService.json">
    <system.web>
      <httpRuntime requestValidationMode="2.0" />
      <webServices>
        <protocols>
          <clear />
        </protocols>
      </webServices>
    </system.web>
  </location>
  <location path="_vti_bin/DynamicGridContent.json">
    <system.web>
      <httpRuntime requestValidationMode="2.0" />
      <webServices>
        <protocols>
          <clear />
        </protocols>
      </webServices>
    </system.web>
  </location>
  <location path="_vti_bin/CrossDomainAjax.ashx">
    <system.web>
      <httpRuntime requestValidationMode="2.0" />
    </system.web>
  </location>
  <Bpm>
    <FCODaoProviders>
      <add key="DashboardSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.DashboardSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="DataSourceSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.DataSourceSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="FilterSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.FilterSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="IndicatorSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.IndicatorSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="KpiSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.KpiSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="ReportViewSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.ReportViewSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <add key="ScorecardSPDao" value="Microsoft.PerformancePoint.Scorecards.Store.Dao.ScorecardSPDao, Microsoft.PerformancePoint.Scorecards.Store, Version=15.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>
  <location path="_layouts/SelectPicture2.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/15/SelectPicture2.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/15/DesignPackageInstall.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_vti_bin/PublishingService.asmx">
    <system.web>
      <httpRuntime executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/15/importsearchconfiguration.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" />
    </system.web>
  </location>
  <location path="_layouts/15/dmspublish.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" executionTimeout="3600" />
    </system.web>
  </location>
  <location path="_layouts/15/dmsdownload.aspx">
    <system.web>
      <httpRuntime maxRequestLength="2097151" executionTimeout="3600" />
    </system.web>
  </location>
  <microsoft.identityModel>
    <service saveBootstrapTokens="true">
      <audienceUris />
      <issuerNameRegistry type="Microsoft.SharePoint.IdentityModel.SPPassiveIssuerNameRegistry, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <issuerTokenResolver type="Microsoft.SharePoint.IdentityModel.SPIssuerTokenResolver, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      <securityTokenHandlers>
        <clear />
        <add type="Microsoft.IdentityModel.Tokens.X509SecurityTokenHandler, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
        <add type="Microsoft.SharePoint.IdentityModel.SPSaml11SecurityTokenHandler, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
          <samlSecurityTokenRequirement>
            <nameClaimType value="http://schemas.microsoft.com/sharepoint/2009/08/claims/userid" />
          </samlSecurityTokenRequirement>
        </add>
        <add type="Microsoft.SharePoint.IdentityModel.SPTokenCache, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
      </securityTokenHandlers>
      <federatedAuthentication>
        <wsFederation passiveRedirectEnabled="false" issuer="https://none" realm="https://none" />
        <cookieHandler mode="Custom" path="/">
          <customCookieHandler type="Microsoft.SharePoint.IdentityModel.SPChunkedCookieHandler, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
        </cookieHandler>
      </federatedAuthentication>
    </service>
  </microsoft.identityModel>
  <location path="favicon.ico">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="webresource.axd">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="scriptresource.axd">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
</configuration>
afnan
Top achievements
Rank 1
 answered on 13 Jul 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?