Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6118


Ignore:
Timestamp:
05/03/11 20:44:54 (13 years ago)
Author:
mjesner
Message:

#1503 base architecture for chart control

Location:
branches/WebApplication/MVC2/HLWebOKBQueryPlugin
Files:
5 added
5 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/HLWebOKBQueryPlugin.csproj

    r6102 r6118  
    6060    <Reference Include="System.Runtime.Serialization" />
    6161    <Reference Include="System.ServiceModel" />
     62    <Reference Include="System.Web.DataVisualization" />
     63    <Reference Include="System.Web.DataVisualization.Design" />
    6264    <Reference Include="System.Web.DynamicData" />
     65    <Reference Include="System.Web.DynamicData.Design" />
    6366    <Reference Include="System.Web.Entity" />
    6467    <Reference Include="System.Web.ApplicationServices" />
     
    8891  </ItemGroup>
    8992  <ItemGroup>
     93    <Compile Include="Controllers\ChartController.cs" />
    9094    <Compile Include="Controllers\FilterController.cs" />
    9195    <Compile Include="Controllers\HomeController.cs" />
     
    97101    <Compile Include="Helpers\Query.cs" />
    98102    <Compile Include="Models\AccountModels.cs" />
     103    <Compile Include="Models\ChartModel.cs" />
    99104    <Compile Include="ViewModels\FilterModel.cs" />
    100105    <Compile Include="Models\QueryModel.cs" />
     
    147152    </None>
    148153    <EmbeddedResource Include="Views\Filter\Filters.ascx" />
     154    <EmbeddedResource Include="Views\Chart\BubbleChart.ascx" />
     155    <Content Include="Views\Chart\Index.aspx" />
    149156    <Content Include="Views\Filter\Index.aspx" />
    150157    <Content Include="Views\Home\About.aspx" />
     
    154161    <Content Include="Views\Query\Results.aspx" />
    155162    <Content Include="Views\ServiceTest\Index.aspx" />
    156     <Content Include="Web.config" />
     163    <Content Include="Web.config">
     164      <SubType>Designer</SubType>
     165    </Content>
    157166    <Content Include="Web.Debug.config">
    158167      <DependentUpon>Web.config</DependentUpon>
     
    196205    <Folder Include="App_LocalResources\" />
    197206    <Folder Include="Views\AlgorithmClass\" />
    198     <Folder Include="Views\Query\Controls\" />
    199207  </ItemGroup>
    200208  <ItemGroup>
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Filter/Filters.ascx

    r6102 r6118  
    99    <%: Html.DropDownList("filtersCombobox", new SelectList(((FilterModel)Model).Filters, "FilterTypeName", "Label"))%>
    1010    <input type="submit" value="add" />
     11   
    1112</p>
    1213<ul>
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Query/Menu.ascx

    r6102 r6118  
    88    <%: Html.ActionLink("Results", "Results", "Query") %>
    99</li>
     10<li <% if(Session["SelectedSubMenu"] == "Chart") {%> class="selected" <%}%>>
     11    <%: Html.ActionLink("Chart", "Index", "Chart") %>
     12</li>
    1013
    1114</ul>
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Web.config

    r5756 r6118  
    3131      <remove name="BlockViewHandler"/>
    3232      <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
     33
     34
    3335    </handlers>
    3436  </system.webServer>
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Web.config

    r5910 r6118  
    1 <?xml version="1.0"?>
    2 
     1<?xml version="1.0"?>
    32<!--
    43  For more information on how to configure your ASP.NET application, please visit
    54  http://go.microsoft.com/fwlink/?LinkId=152368
    65  -->
     6<configuration>
     7  <configSections>
     8  </configSections>
     9  <appSettings>
     10  <add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\temp\chart;" />
     11 </appSettings>
     12 <connectionStrings>
     13    <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
     14  </connectionStrings>
     15  <system.web>
     16    <httpHandlers>
     17   <add path="ChartImg.axd" verb="*" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
     18    validate="false" />
     19  </httpHandlers>
     20  <compilation debug="true" targetFramework="4.0">
     21      <assemblies>
     22        <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
     23        <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
     24        <add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
     25        <add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></assemblies>
     26    </compilation>
     27    <authentication mode="Forms">
     28      <forms loginUrl="~/Account/LogOn" timeout="2880"/>
     29    </authentication>
     30    <membership>
     31      <providers>
     32        <clear/>
     33        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/"/>
     34      </providers>
     35    </membership>
     36    <profile>
     37      <providers>
     38        <clear/>
     39        <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
     40      </providers>
     41    </profile>
     42    <roleManager enabled="false">
     43      <providers>
     44        <clear/>
     45        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/"/>
     46        <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/"/>
     47      </providers>
     48    </roleManager>
     49    <pages>
     50   <namespaces>
     51    <add namespace="System.Web.Mvc" />
     52    <add namespace="System.Web.Mvc.Ajax" />
     53    <add namespace="System.Web.Mvc.Html" />
     54    <add namespace="System.Web.Routing" />
     55   </namespaces>
     56   <controls>
     57    <add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting"
     58     assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
     59   </controls>
     60  </pages>
     61  </system.web>
     62  <system.webServer>
     63  <validation validateIntegratedModeConfiguration="false" />
     64  <modules runAllManagedModulesForAllRequests="true" />
     65  <handlers>
     66   
     67   <add name="ChartImageHandler" preCondition="integratedMode" verb="*"
     68    path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
     69 
    770
    8 <configuration>
    9   <configSections>
    10   </configSections>
    11   <connectionStrings>
    12     <add name="ApplicationServices"
    13          connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
    14          providerName="System.Data.SqlClient" />
    15   </connectionStrings>
    16 
    17   <system.web>
    18     <compilation debug="true" targetFramework="4.0">
    19       <assemblies>
    20         <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    21         <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    22         <add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    23       </assemblies>
    24     </compilation>
    25 
    26     <authentication mode="Forms">
    27       <forms loginUrl="~/Account/LogOn" timeout="2880" />
    28     </authentication>
    29 
    30     <membership>
    31       <providers>
    32         <clear/>
    33         <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
    34              enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
    35              maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
    36              applicationName="/" />
    37       </providers>
    38     </membership>
    39 
    40     <profile>
    41       <providers>
    42         <clear/>
    43         <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
    44       </providers>
    45     </profile>
    46 
    47     <roleManager enabled="false">
    48       <providers>
    49         <clear/>
    50         <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
    51         <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
    52       </providers>
    53     </roleManager>
    54 
    55     <pages>
    56       <namespaces>
    57         <add namespace="System.Web.Mvc" />
    58         <add namespace="System.Web.Mvc.Ajax" />
    59         <add namespace="System.Web.Mvc.Html" />
    60         <add namespace="System.Web.Routing" />
    61       </namespaces>
    62     </pages>
    63   </system.web>
    64 
    65   <system.webServer>
    66     <validation validateIntegratedModeConfiguration="false"/>
    67     <modules runAllManagedModulesForAllRequests="true"/>
    68   </system.webServer>
    69 
    70   <runtime>
    71     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    72       <dependentAssembly>
    73         <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
    74         <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />
    75       </dependentAssembly>
    76     </assemblyBinding>
    77   </runtime>
    78   <system.serviceModel>
    79     <bindings>
    80       <wsHttpBinding>
    81         <binding name="WSHttpBinding_IOKBService" closeTimeout="00:01:00"
    82           openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    83           bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    84           maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
    85           textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
    86           <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    87             maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    88           <reliableSession ordered="true" inactivityTimeout="00:10:00"
    89             enabled="false" />
    90           <security mode="Message">
    91             <transport clientCredentialType="Windows" proxyCredentialType="None"
    92               realm="" />
    93             <message clientCredentialType="UserName" negotiateServiceCredential="true"
    94               algorithmSuite="Default" />
    95           </security>
    96         </binding>
    97         <binding name="WSHttpBinding_IAuthenticationService" closeTimeout="00:01:00"
    98           openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    99           bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    100           maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
    101           textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
    102           <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    103             maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    104           <reliableSession ordered="true" inactivityTimeout="00:10:00"
    105             enabled="false" />
    106           <security mode="Message">
    107             <transport clientCredentialType="Windows" proxyCredentialType="None"
    108               realm="" />
    109             <message clientCredentialType="UserName" negotiateServiceCredential="true"
    110               algorithmSuite="Default" />
    111           </security>
    112         </binding>
    113         <binding name="WSHttpBinding_IAdministrationService" closeTimeout="00:01:00"
    114           openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    115           bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    116           maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
    117           textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
    118           <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    119             maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    120           <reliableSession ordered="true" inactivityTimeout="00:10:00"
    121             enabled="false" />
    122           <security mode="Message">
    123             <transport clientCredentialType="Windows" proxyCredentialType="None"
    124               realm="" />
    125             <message clientCredentialType="UserName" negotiateServiceCredential="true"
    126               algorithmSuite="Default" />
    127           </security>
    128         </binding>
    129         <binding name="WSHttpBinding_IQueryService" closeTimeout="00:01:00"
    130           openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    131           bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    132           maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
    133           textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
    134           <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    135             maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    136           <reliableSession ordered="true" inactivityTimeout="00:10:00"
    137             enabled="false" />
    138           <security mode="Message">
    139             <transport clientCredentialType="Windows" proxyCredentialType="None"
    140               realm="" />
    141             <message clientCredentialType="UserName" negotiateServiceCredential="true"
    142               algorithmSuite="Default" />
    143           </security>
    144         </binding>
    145       </wsHttpBinding>
    146     </bindings>
    147     <client>
    148       <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService"
    149         binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IOKBService"
    150         contract="OKBService.IOKBService" name="WSHttpBinding_IOKBService">
    151         <identity>
    152           <certificate encodedValue="AwAAAAEAAAAUAAAAIQrvmocYcMi5fmvHzIyVXAYioh8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDkyNTExNDY1N1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtTYRDoRxGMo6KzVypLUKzMv6NbGgabF1PpORsk59JyT/W3bw6DDVAmXkxKEYyunIRHTyQp1/o9Or1n/lAVe0DyQYYvRrlVWn16kYbBwBG/5op3urgUo456WTfMvpezvUpII+U6p5lM2nJlCwLSVplbzbWg0Q45l813+9mXqfyPQIDAQABo0kwRzBFBgNVHQEEPjA8gBC9NBW28XBwPiaJJgiOU6W9oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQADgYEAdSi0jtQ/54Lqz5lWKk9EzTVImUn6gppz8JQGjo0lPa4PrsLplk2jK8Z7esgMLr3VqQPIgb92/ekrDMRttMi9MDgrSWbOPKjINvyC4mMK2KgfgHAfUQM8kH223GReUUzwF99FG8HhzoqrUMIlmCvrf5EZ19FBPEygFNOew0jhiHY=" />
    153         </identity>
    154       </endpoint>
    155       <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/AuthenticationService.svc"
    156         binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAuthenticationService"
    157         contract="OKBAuthenticationService.IAuthenticationService" name="WSHttpBinding_IAuthenticationService">
    158         <identity>
    159           <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
    160         </identity>
    161       </endpoint>
    162       <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/AdministrationService.svc"
    163         binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdministrationService"
    164         contract="OKBAdministrationService.IAdministrationService" name="WSHttpBinding_IAdministrationService">
    165         <identity>
    166           <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
    167         </identity>
    168       </endpoint>
    169       <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/QueryService.svc"
    170         binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IQueryService"
    171         contract="OKBQueryService.IQueryService" name="WSHttpBinding_IQueryService">
    172         <identity>
    173           <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
    174         </identity>
    175       </endpoint>
    176     </client>
    177   </system.serviceModel>
     71  </handlers>
     72 </system.webServer>
     73  <runtime>
     74    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
     75      <dependentAssembly>
     76        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
     77        <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
     78      </dependentAssembly>
     79    </assemblyBinding>
     80  </runtime>
     81  <system.serviceModel>
     82    <bindings>
     83      <wsHttpBinding>
     84        <binding name="WSHttpBinding_IOKBService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="9999999" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
     85          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
     86          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
     87          <security mode="Message">
     88            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
     89            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
     90          </security>
     91        </binding>
     92        <binding name="WSHttpBinding_IAuthenticationService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
     93          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
     94          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
     95          <security mode="Message">
     96            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
     97            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
     98          </security>
     99        </binding>
     100        <binding name="WSHttpBinding_IAdministrationService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
     101          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
     102          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
     103          <security mode="Message">
     104            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
     105            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
     106          </security>
     107        </binding>
     108        <binding name="WSHttpBinding_IQueryService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
     109          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
     110          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
     111          <security mode="Message">
     112            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
     113            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
     114          </security>
     115        </binding>
     116      </wsHttpBinding>
     117    </bindings>
     118    <client>
     119      <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IOKBService" contract="OKBService.IOKBService" name="WSHttpBinding_IOKBService">
     120        <identity>
     121          <certificate encodedValue="AwAAAAEAAAAUAAAAIQrvmocYcMi5fmvHzIyVXAYioh8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDkyNTExNDY1N1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtTYRDoRxGMo6KzVypLUKzMv6NbGgabF1PpORsk59JyT/W3bw6DDVAmXkxKEYyunIRHTyQp1/o9Or1n/lAVe0DyQYYvRrlVWn16kYbBwBG/5op3urgUo456WTfMvpezvUpII+U6p5lM2nJlCwLSVplbzbWg0Q45l813+9mXqfyPQIDAQABo0kwRzBFBgNVHQEEPjA8gBC9NBW28XBwPiaJJgiOU6W9oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQADgYEAdSi0jtQ/54Lqz5lWKk9EzTVImUn6gppz8JQGjo0lPa4PrsLplk2jK8Z7esgMLr3VqQPIgb92/ekrDMRttMi9MDgrSWbOPKjINvyC4mMK2KgfgHAfUQM8kH223GReUUzwF99FG8HhzoqrUMIlmCvrf5EZ19FBPEygFNOew0jhiHY="/>
     122        </identity>
     123      </endpoint>
     124      <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/AuthenticationService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAuthenticationService" contract="OKBAuthenticationService.IAuthenticationService" name="WSHttpBinding_IAuthenticationService">
     125        <identity>
     126          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ=="/>
     127        </identity>
     128      </endpoint>
     129      <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/AdministrationService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdministrationService" contract="OKBAdministrationService.IAdministrationService" name="WSHttpBinding_IAdministrationService">
     130        <identity>
     131          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ=="/>
     132        </identity>
     133      </endpoint>
     134      <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/QueryService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IQueryService" contract="OKBQueryService.IQueryService" name="WSHttpBinding_IQueryService">
     135        <identity>
     136          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ=="/>
     137        </identity>
     138      </endpoint>
     139    </client>
     140  </system.serviceModel>
    178141</configuration>
    179 
Note: See TracChangeset for help on using the changeset viewer.