Guest User

Untitled

a guest
Aug 13th, 2013
86
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=301880
  5.  -->
  6. <configuration>
  7.   <appSettings>
  8.     <add key="webpages:Version" value="3.0.0.0" />
  9.     <add key="webpages:Enabled" value="false" />
  10.     <add key="PreserveLoginUrl" value="true" />
  11.     <add key="ClientValidationEnabled" value="true" />
  12.     <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  13.   </appSettings>
  14.   <system.web>
  15.     <identity impersonate="true" />
  16.     <compilation debug="true" targetFramework="4.5" />
  17.     <httpRuntime targetFramework="4.5" />
  18.     <pages>
  19.       <namespaces>
  20.         <add namespace="System.Web.Helpers" />
  21.         <add namespace="System.Web.Mvc" />
  22.         <add namespace="System.Web.Mvc.Ajax" />
  23.         <add namespace="System.Web.Mvc.Html" />
  24.         <add namespace="System.Web.Optimization" />
  25.         <add namespace="System.Web.Routing" />
  26.         <add namespace="System.Web.WebPages" />
  27.       </namespaces>
  28.     </pages>
  29.   </system.web>
  30.   <system.webServer>
  31.     <validation validateIntegratedModeConfiguration="false" />
  32.   </system.webServer>
  33.   <runtime>
  34.     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  35.       <dependentAssembly>
  36.         <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  37.         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  38.       </dependentAssembly>
  39.       <dependentAssembly>
  40.         <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  41.         <bindingRedirect oldVersion="1.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
  42.       </dependentAssembly>
  43.       <dependentAssembly>
  44.         <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
  45.         <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
  46.       </dependentAssembly>
  47.       <dependentAssembly>
  48.         <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  49.         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  50.       </dependentAssembly>
  51.       <dependentAssembly>
  52.         <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
  53.         <bindingRedirect oldVersion="1.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
  54.       </dependentAssembly>
  55.     </assemblyBinding>
  56.   </runtime>
  57.   <system.serviceModel>
  58.     <bindings>
  59.       <basicHttpBinding>
  60.         <binding name="BasicHttpBinding_IAdminService">
  61.           <security mode="TransportCredentialOnly">
  62.             <transport clientCredentialType="Windows" />
  63.           </security>
  64.         </binding>
  65.         <binding name="BasicHttpBinding_ICommunityService">
  66.           <security mode="TransportCredentialOnly">
  67.             <transport clientCredentialType="Windows" />
  68.           </security>
  69.         </binding>
  70.         <binding name="BasicHttpBinding_IReportingService">
  71.           <security mode="TransportCredentialOnly">
  72.             <transport clientCredentialType="Windows" />
  73.           </security>
  74.         </binding>
  75.         <binding name="BasicHttpBinding_ISearchService">
  76.           <security mode="TransportCredentialOnly">
  77.             <transport clientCredentialType="Windows" />
  78.           </security>
  79.         </binding>
  80.       </basicHttpBinding>
  81.     </bindings>
  82.     <client>
  83.       <endpoint address="http://localhost:666/AdminService/" binding="basicHttpBinding"
  84.        bindingConfiguration="BasicHttpBinding_IAdminService" contract="AdminServiceReference.IAdminService"
  85.        name="BasicHttpBinding_IAdminService" />
  86.       <endpoint address="http://localhost:666/CommunityService/" binding="basicHttpBinding"
  87.        bindingConfiguration="BasicHttpBinding_ICommunityService" contract="CommunityServiceReference.ICommunityService"
  88.        name="BasicHttpBinding_ICommunityService" />
  89.       <endpoint address="http://localhost:666/ReportingService/" binding="basicHttpBinding"
  90.        bindingConfiguration="BasicHttpBinding_IReportingService" contract="ReportingServiceReference.IReportingService"
  91.        name="BasicHttpBinding_IReportingService" />
  92.       <endpoint address="http://localhost:666/SearchService/" binding="basicHttpBinding"
  93.        bindingConfiguration="BasicHttpBinding_ISearchService" contract="SearchServiceReference.ISearchService"
  94.        name="BasicHttpBinding_ISearchService" />
  95.     </client>
  96.   </system.serviceModel>
  97. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment