Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- For more information on how to configure your ASP.NET application, please visit
- http://go.microsoft.com/fwlink/?LinkId=301880
- -->
- <configuration>
- <appSettings>
- <add key="webpages:Version" value="3.0.0.0" />
- <add key="webpages:Enabled" value="false" />
- <add key="PreserveLoginUrl" value="true" />
- <add key="ClientValidationEnabled" value="true" />
- <add key="UnobtrusiveJavaScriptEnabled" value="true" />
- </appSettings>
- <system.web>
- <identity impersonate="true" />
- <compilation debug="true" targetFramework="4.5" />
- <httpRuntime targetFramework="4.5" />
- <pages>
- <namespaces>
- <add namespace="System.Web.Helpers" />
- <add namespace="System.Web.Mvc" />
- <add namespace="System.Web.Mvc.Ajax" />
- <add namespace="System.Web.Mvc.Html" />
- <add namespace="System.Web.Optimization" />
- <add namespace="System.Web.Routing" />
- <add namespace="System.Web.WebPages" />
- </namespaces>
- </pages>
- </system.web>
- <system.webServer>
- <validation validateIntegratedModeConfiguration="false" />
- </system.webServer>
- <runtime>
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
- <dependentAssembly>
- <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
- <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
- </dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
- <bindingRedirect oldVersion="1.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
- </dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
- <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
- </dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
- <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
- </dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
- <bindingRedirect oldVersion="1.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
- </dependentAssembly>
- </assemblyBinding>
- </runtime>
- <system.serviceModel>
- <bindings>
- <basicHttpBinding>
- <binding name="BasicHttpBinding_IAdminService">
- <security mode="TransportCredentialOnly">
- <transport clientCredentialType="Windows" />
- </security>
- </binding>
- <binding name="BasicHttpBinding_ICommunityService">
- <security mode="TransportCredentialOnly">
- <transport clientCredentialType="Windows" />
- </security>
- </binding>
- <binding name="BasicHttpBinding_IReportingService">
- <security mode="TransportCredentialOnly">
- <transport clientCredentialType="Windows" />
- </security>
- </binding>
- <binding name="BasicHttpBinding_ISearchService">
- <security mode="TransportCredentialOnly">
- <transport clientCredentialType="Windows" />
- </security>
- </binding>
- </basicHttpBinding>
- </bindings>
- <client>
- <endpoint address="http://localhost:666/AdminService/" binding="basicHttpBinding"
- bindingConfiguration="BasicHttpBinding_IAdminService" contract="AdminServiceReference.IAdminService"
- name="BasicHttpBinding_IAdminService" />
- <endpoint address="http://localhost:666/CommunityService/" binding="basicHttpBinding"
- bindingConfiguration="BasicHttpBinding_ICommunityService" contract="CommunityServiceReference.ICommunityService"
- name="BasicHttpBinding_ICommunityService" />
- <endpoint address="http://localhost:666/ReportingService/" binding="basicHttpBinding"
- bindingConfiguration="BasicHttpBinding_IReportingService" contract="ReportingServiceReference.IReportingService"
- name="BasicHttpBinding_IReportingService" />
- <endpoint address="http://localhost:666/SearchService/" binding="basicHttpBinding"
- bindingConfiguration="BasicHttpBinding_ISearchService" contract="SearchServiceReference.ISearchService"
- name="BasicHttpBinding_ISearchService" />
- </client>
- </system.serviceModel>
- </configuration>
Advertisement
Add Comment
Please, Sign In to add comment