Changeset 9656
- Timestamp:
- 06/24/13 21:14:59 (11 years ago)
- 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 59 59 <bindings> 60 60 <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"> 62 62 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> 63 63 <security mode="Message"> … … 68 68 </wsHttpBinding> 69 69 <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"> 71 71 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> 72 72 <security mode="TransportWithMessageCredential"> -
branches/HivePerformance/sources/HeuristicLab.Services.Hive.Web/web_services.config
r9251 r9656 29 29 </connectionStrings> 30 30 31 <system.web> 31 <system.web> 32 32 <customErrors mode="Off"/> 33 33 <authentication mode="Forms" /> 34 <compilation debug="true" targetFramework="4.0" >34 <compilation debug="true" targetFramework="4.0" batch="false"> 35 35 <assemblies> 36 36 <add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> … … 55 55 </controls> 56 56 </pages> 57 <httpRuntime maxRequestLength="2147483647"/> 58 57 <httpRuntime maxRequestLength="2147483647"/> 59 58 </system.web> 60 59 … … 67 66 <wsHttpBinding> 68 67 <binding name="WSHttpBinding_IHiveService" 69 receiveTimeout="00: 15:00"70 sendTimeout="00: 10:00"68 receiveTimeout="00:35:00" 69 sendTimeout="00:35:00" 71 70 maxBufferPoolSize="2147483647" 72 71 maxReceivedMessageSize="2147483647"> … … 78 77 </binding> 79 78 </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> 80 88 </bindings> 81 89 … … 105 113 </behaviors> 106 114 107 <services>115 <services> 108 116 <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"/> 111 121 </service> 112 122 </services>
Note: See TracChangeset
for help on using the changeset viewer.