Advertisement
RobertKaucher

Untitled

Apr 5th, 2013
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3.  For more information on how to configure your ASP.NET application, please visit
  4.  http://go.microsoft.com/fwlink/?LinkId=169433
  5.  -->
  6. <configuration>
  7.   <configSections>
  8.     <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  9.     <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  10.   </configSections>
  11.   <connectionStrings>
  12.     <add name="BusinessProcessEntities" connectionString="redacted" providerName="System.Data.EntityClient" />
  13.   </connectionStrings>
  14.   <appSettings>
  15.     <add key="webpages:Version" value="2.0.0.0" />
  16.     <add key="webpages:Enabled" value="false" />
  17.     <add key="PreserveLoginUrl" value="true" />
  18.     <add key="ClientValidationEnabled" value="true" />
  19.     <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  20.   </appSettings>
  21.   <system.web>
  22.     <compilation debug="true" targetFramework="4.5" />
  23.     <httpRuntime targetFramework="4.5" maxRequestLength="1048576" />
  24.     <authentication mode="Windows" />
  25.     <authorization>
  26.  
  27.       <deny users="?" />
  28.     </authorization>
  29.     <pages>
  30.       <namespaces>
  31.         <add namespace="System.Web.Helpers" />
  32.         <add namespace="System.Web.Mvc" />
  33.         <add namespace="System.Web.Mvc.Ajax" />
  34.         <add namespace="System.Web.Mvc.Html" />
  35.         <add namespace="System.Web.Optimization" />
  36.         <add namespace="System.Web.Routing" />
  37.         <add namespace="System.Web.WebPages" />
  38.       <add namespace="Kendo.Mvc.UI" />
  39.       </namespaces>
  40.     </pages>
  41.   </system.web>
  42.   <system.webServer>
  43.       <modules runAllManagedModulesForAllRequests="true">
  44.         <remove name="WebDAVModule" />
  45.         <add name="MvcCorsHttpModule" type="Thinktecture.IdentityModel.Http.Cors.Mvc.MvcCorsHttpModule"/>
  46.     </modules>
  47.     <validation validateIntegratedModeConfiguration="false" />
  48.     <handlers>
  49.       <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
  50.       <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
  51.       <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  52.       <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
  53.       <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
  54.       <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  55.     </handlers>
  56.     <httpProtocol>
  57.       <customHeaders>
  58.         <add name="Access-Control-Allow-Origin" value="http://dev-02" />
  59.         <add name="Access-Control-Allow-Headers" value="Origin, X-Requested-With, Content-Type, Accept" />
  60.       </customHeaders>
  61.     </httpProtocol>
  62.   </system.webServer>
  63.   <runtime>
  64.     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  65.       <dependentAssembly>
  66.         <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  67.         <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
  68.       </dependentAssembly>
  69.       <dependentAssembly>
  70.         <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  71.         <bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
  72.       </dependentAssembly>
  73.       <dependentAssembly>
  74.         <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  75.         <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
  76.       </dependentAssembly>
  77.     </assemblyBinding>
  78.   </runtime>
  79.   <entityFramework>
  80.     <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  81.       <parameters>
  82.         <parameter value="v11.0" />
  83.       </parameters>
  84.     </defaultConnectionFactory>
  85.   </entityFramework>
  86. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement