Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/20/12 13:00:30 (12 years ago)
Author:
fschoepp
Message:

#1888:

  • Web project now creates custom html for each type we want to enter / display
  • Added endpointConfigurationName to HiveServiceLocator (because Web Project contains more than one endpoint configuration)
  • Removed logging statement from ConfigurationService to prevent exception during failure of loading ConfigurationSettings
  • ApplicationManager: Changed default implementation to WebApplicationManager (instead of LightWeight) for testing purposes within Web Project
  • WebApplicationManager: The application manager which returns plugin descriptors from the currently loaded assemblies (instead of LightweightAppManager)
  • HiveService: Fixed a transaction bug
  • IControllerService: Created a method to dispatch Scenarios to certain IScenarioManager (in this case HiveScenarioManager)
  • Added more mappable types to ControllerModel
  • PlaceholderControllerService dispatches all Scenarios to the HiveScenarioManager
  • Web project now dispatches the scenario to the controller after pressing "Run Job"
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Web/Web.config

    r8384 r8506  
    1313      </listeners>
    1414    </trace>
     15    <sources>
     16      <source name="System.ServiceModel"
     17              switchValue="Information, ActivityTracing"
     18              propagateActivity="true" >
     19        <listeners>
     20          <add name="xml"/>
     21        </listeners>
     22      </source>
     23      <source name="System.ServiceModel.MessageLogging">
     24        <listeners>
     25          <add name="xml"/>
     26        </listeners>
     27      </source>
     28      <source name="myUserTraceSource"
     29              switchValue="Information, ActivityTracing">
     30        <listeners>
     31          <add name="xml"/>
     32        </listeners>
     33      </source>
     34    </sources>
     35    <sharedListeners>
     36      <add name="xml"
     37           type="System.Diagnostics.XmlWriterTraceListener"
     38                 initializeData="C:\logs\Traces.svclog" />
     39    </sharedListeners>
    1540  </system.diagnostics>
     41 
     42 
    1643  <connectionStrings>
    1744    <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
     
    107134        <binding name="WSHttpBinding_IControllerService" receiveTimeout="00:10:00" sendTimeout="00:10:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
    108135          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
     136          <security mode="Message">
     137            <transport clientCredentialType="Certificate"/>
     138            <message clientCredentialType="UserName"/>
     139          </security>
     140        </binding>
     141        <binding name="WSHttpBinding_IHiveService" receiveTimeout="00:10:00" sendTimeout="00:10:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
     142          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
    109143          <security mode="Message">
    110144            <transport clientCredentialType="Certificate"/>
     
    150184    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
    151185    <client>
    152       <endpoint address="http://localhost:2092/ControllerService.svc" behaviorConfiguration="LocalCertValidation"
     186      <endpoint address="http://localhost:8080/ControllerService.svc" behaviorConfiguration="LocalCertValidation"
    153187          binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IControllerService"
    154188          contract="HeuristicLab.Services.Optimization.ControllerService.IControllerService" name="WSHttpBinding_IControllerService">
     
    157191        </identity>
    158192      </endpoint>
     193      <endpoint address="http://127.0.0.1:81/HiveService.svc" behaviorConfiguration="LocalCertValidation"
     194         binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" contract="HeuristicLab.Clients.Hive.IHiveService" name="WSHttpBinding_IHiveService">
     195        <identity>
     196          <certificate encodedValue="ADJUST_ME" />
     197        </identity>
     198      </endpoint>
     199      <!--
     200      <endpoint address="http://optimization.cloudapp.net/HiveService.svc" behaviorConfiguration="LocalCertValidation"
     201         binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" contract="HeuristicLab.Clients.Hive.IHiveService" name="WSHttpBinding_IHiveService">
     202        <identity>
     203          <certificate encodedValue="ADJUST_ME" />
     204        </identity>
     205      </endpoint>
     206      -->
    159207    </client>
    160208  </system.serviceModel>
Note: See TracChangeset for help on using the changeset viewer.