Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Billing/App.config @ 9619

Last change on this file since 9619 was 9619, checked in by spimming, 11 years ago

#1888:

  • Added new BillingService methods
  • Disabled proxy generation and lazy loading!
  • Extended see method with additional test data
  • Added properties to order and invoice model
  • initial commit of BillingEngine module
File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3  <connectionStrings>
4    <add name="BillingContext" connectionString="ADJUST_ME" providerName="System.Data.SqlClient"/>
5  </connectionStrings>
6  <configSections>
7    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
8    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
9  </configSections>
10  <appSettings>
11    <add key="BillingEngineInterval" value ="00:01:00"/>
12  </appSettings>
13  <entityFramework>
14    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
15  </entityFramework>
16  <system.serviceModel>
17    <services>
18      <service name="HeuristicLab.Services.Optimization.Billing">
19        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="" name="MexEndpoint" contract="IMetadataExchange" />
20        <endpoint binding="wsHttpBinding" name="WSHttpBinding_IOptimizationBilling" contract="HeuristicLab.Services.Optimization.Billing.Interfaces.IOptimizationBilling" />
21      </service>
22    </services>
23  </system.serviceModel>
24</configuration>
Note: See TracBrowser for help on using the repository browser.