Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9656


Ignore:
Timestamp:
06/24/13 21:14:59 (11 years ago)
Author:
ascheibe
Message:

#2030 updated the web.config of services with the new tcp binding

Location:
branches/HivePerformance/sources/HeuristicLab.Services.Hive.Web
Files:
2 edited

Legend:

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

    r9638 r9656  
    5959    <bindings>
    6060      <wsHttpBinding>
    61         <binding name="WSHttpBinding_IHiveService" messageEncoding="Text" receiveTimeout="00:15:00" sendTimeout="00:10:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
     61        <binding name="WSHttpBinding_IHiveService" messageEncoding="Text" receiveTimeout="00:35:00" sendTimeout="00:35:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
    6262          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
    6363          <security mode="Message">
     
    6868      </wsHttpBinding>
    6969      <netTcpBinding>
    70         <binding name="NetTcpBinding_IHiveService" portSharingEnabled="true" receiveTimeout="00:15:00" sendTimeout="00:10:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
     70        <binding name="NetTcpBinding_IHiveService" portSharingEnabled="true" receiveTimeout="00:35:00" sendTimeout="00:35:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
    7171          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
    7272          <security mode="TransportWithMessageCredential">
  • branches/HivePerformance/sources/HeuristicLab.Services.Hive.Web/web_services.config

    r9251 r9656  
    2929  </connectionStrings>
    3030 
    31   <system.web>
     31  <system.web>     
    3232  <customErrors mode="Off"/>
    3333    <authentication mode="Forms" />
    34     <compilation debug="true" targetFramework="4.0">
     34    <compilation debug="true" targetFramework="4.0" batch="false">
    3535      <assemblies>
    3636        <add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
     
    5555      </controls>
    5656    </pages>
    57     <httpRuntime maxRequestLength="2147483647"/>
    58  
     57    <httpRuntime maxRequestLength="2147483647"/>   
    5958  </system.web>
    6059 
     
    6766      <wsHttpBinding>
    6867        <binding name="WSHttpBinding_IHiveService"
    69       receiveTimeout="00:15:00"
    70           sendTimeout="00:10:00"
     68      receiveTimeout="00:35:00"
     69          sendTimeout="00:35:00"
    7170      maxBufferPoolSize="2147483647"
    7271      maxReceivedMessageSize="2147483647">
     
    7877        </binding>
    7978      </wsHttpBinding>
     79    <netTcpBinding>
     80        <binding name="NetTcpBinding_IHiveService" portSharingEnabled="true" receiveTimeout="00:35:00" sendTimeout="00:35:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
     81          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
     82          <security mode="TransportWithMessageCredential">
     83            <transport clientCredentialType="Certificate"/>
     84            <message clientCredentialType="UserName"/>
     85          </security>
     86        </binding>
     87      </netTcpBinding>
    8088    </bindings>
    8189   
     
    105113    </behaviors>
    106114
    107     <services>
     115     <services>
    108116      <service behaviorConfiguration="ServiceBehaviour_IHiveService" name="HeuristicLab.Services.Hive.HiveService">
    109         <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="" name="MexEndpoint" contract="IMetadataExchange" />
    110         <endpoint binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" name="WSHttpBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService" />
     117        <endpoint address="mexhttp" binding="mexHttpBinding" bindingConfiguration="" name="MexHttpEndpoint" contract="IMetadataExchange"/>
     118        <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" name="MexTcpEndpoint" contract="IMetadataExchange"/>
     119        <endpoint address="" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" name="WSHttpBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService"/>
     120        <endpoint address="net.tcp://services.heuristiclab.com/Hive-3.3/HiveService.svc" binding="netTcpBinding"  bindingConfiguration="NetTcpBinding_IHiveService" name="NetBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService"/>
    111121      </service>
    112122    </services>
Note: See TracChangeset for help on using the changeset viewer.