1 | <?xml version="1.0"?>
|
---|
2 | <configuration>
|
---|
3 | <connectionStrings>
|
---|
4 | <add name="HeuristicLab.Authentication" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
|
---|
5 | <add name="HeuristicLab.Services.OKB.DataAccess.Properties.Settings.OKBConnectionString" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.OKB"/>
|
---|
6 | </connectionStrings>
|
---|
7 |
|
---|
8 | <system.web>
|
---|
9 | <compilation debug="true"/>
|
---|
10 | <membership>
|
---|
11 | <providers>
|
---|
12 | <clear/>
|
---|
13 | <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="HeuristicLab.Authentication"/>
|
---|
14 | </providers>
|
---|
15 | </membership>
|
---|
16 | <roleManager enabled="true">
|
---|
17 | <providers>
|
---|
18 | <clear/>
|
---|
19 | <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication"/>
|
---|
20 | </providers>
|
---|
21 | </roleManager>
|
---|
22 | </system.web>
|
---|
23 |
|
---|
24 | <system.serviceModel>
|
---|
25 | <bindings>
|
---|
26 | <mexHttpBinding>
|
---|
27 | <binding name="DefaultMexHttpBinding"/>
|
---|
28 | </mexHttpBinding>
|
---|
29 | <wsHttpBinding>
|
---|
30 | <binding name="DefaultWsHttpBinding" maxReceivedMessageSize="200000000">
|
---|
31 | <readerQuotas maxArrayLength="200000000" maxBytesPerRead="200000000"/>
|
---|
32 | <security mode="Message">
|
---|
33 | <message clientCredentialType="UserName"/>
|
---|
34 | </security>
|
---|
35 | </binding>
|
---|
36 | </wsHttpBinding>
|
---|
37 | </bindings>
|
---|
38 |
|
---|
39 | <behaviors>
|
---|
40 | <serviceBehaviors>
|
---|
41 | <behavior name="DefaultServiceBehavior">
|
---|
42 | <serviceMetadata httpGetEnabled="true"/>
|
---|
43 | <serviceDebug includeExceptionDetailInFaults="true"/>
|
---|
44 | <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/>
|
---|
45 | <serviceCredentials>
|
---|
46 | <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName"/>
|
---|
47 | <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider"/>
|
---|
48 | </serviceCredentials>
|
---|
49 | <dataContractSerializer maxItemsInObjectGraph="6553600"/>
|
---|
50 | </behavior>
|
---|
51 | </serviceBehaviors>
|
---|
52 | </behaviors>
|
---|
53 |
|
---|
54 | <services>
|
---|
55 | <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.Administration.AdministrationService">
|
---|
56 | <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
|
---|
57 | <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.OKB.Administration.IAdministrationService"/>
|
---|
58 | <host>
|
---|
59 | <baseAddresses>
|
---|
60 | <add baseAddress="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdministrationService"/>
|
---|
61 | </baseAddresses>
|
---|
62 | </host>
|
---|
63 | </service>
|
---|
64 | <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.RunCreation.RunCreationService">
|
---|
65 | <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
|
---|
66 | <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.OKB.RunCreation.IRunCreationService"/>
|
---|
67 | <host>
|
---|
68 | <baseAddresses>
|
---|
69 | <add baseAddress="http://localhost:8732/Design_Time_Addresses/OKB-3.3/RunCreationService"/>
|
---|
70 | </baseAddresses>
|
---|
71 | </host>
|
---|
72 | </service>
|
---|
73 | <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.Query.QueryService">
|
---|
74 | <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/>
|
---|
75 | <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.OKB.Query.IQueryService"/>
|
---|
76 | <host>
|
---|
77 | <baseAddresses>
|
---|
78 | <add baseAddress="http://localhost:8732/Design_Time_Addresses/OKB-3.3/QueryService"/>
|
---|
79 | </baseAddresses>
|
---|
80 | </host>
|
---|
81 | </service>
|
---|
82 | </services>
|
---|
83 | </system.serviceModel>
|
---|
84 | <startup>
|
---|
85 | <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
|
---|
86 | </startup>
|
---|
87 | </configuration>
|
---|