Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/09/10 13:55:41 (13 years ago)
Author:
cneumuel
Message:

#1233

  • removed dash from solution file name
  • reorganized MessageContainer.MessageTypes
  • added server test project
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Web/Hive-3.4/Web.config

    r4905 r5078  
    2828    </diagnostics>
    2929   
     30    <bindings>
     31      <wsHttpBinding>
     32        <binding name="WSHttpBinding_IHiveService" receiveTimeout="00:10:00"
     33          sendTimeout="00:10:00" maxBufferPoolSize="104857600" maxReceivedMessageSize="104857600">
     34          <readerQuotas maxStringContentLength="104857600" maxArrayLength="104857600" />
     35          <security mode="Message">
     36            <transport clientCredentialType="Certificate"/>
     37            <message clientCredentialType="UserName" />
     38          </security>
     39        </binding>
     40      </wsHttpBinding>
     41    </bindings>
    3042   
    31     <!-- TODO from here: -->
    3243    <behaviors>
    3344      <serviceBehaviors>
    34         <behavior>
     45        <behavior name="ServiceBehaviour_IHiveService">
    3546          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
    36           <serviceMetadata httpGetEnabled="true"/>
     47          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="false" />
    3748          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
    38           <serviceDebug includeExceptionDetailInFaults="false"/>
     49          <serviceDebug httpHelpPageEnabled="true" includeExceptionDetailInFaults="true" />
     50          <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider" />
     51          <serviceCredentials>
     52            <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" />
     53            <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider" />
     54          </serviceCredentials>
     55          <serviceSecurityAudit auditLogLocation="Application" suppressAuditFailure="false" messageAuthenticationAuditLevel="SuccessOrFailure" />
     56          <serviceThrottling maxConcurrentCalls="100" />
    3957        </behavior>
    4058      </serviceBehaviors>
    4159    </behaviors>
     60
     61    <services>
     62      <service behaviorConfiguration="ServiceBehaviour_IHiveService" name="HeuristicLab.Services.Hive.HiveService">
     63        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="" name="MexEndpoint" contract="IMetadataExchange" />
     64        <endpoint binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" name="WSHttpBinding_IHiveService" contract="HeuristicLab.Services.Hive.Common.ServiceContracts.IHiveService" />
     65      </service>
     66    </services>
     67   
    4268    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
    4369  </system.serviceModel>
     70 
    4471  <system.webServer>
    4572    <modules runAllManagedModulesForAllRequests="true"/>
Note: See TracChangeset for help on using the changeset viewer.