Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/09 17:44:58 (15 years ago)
Author:
mbecirov
Message:

#528: WCF Service secured - you need to install the certificate in order to run the application properly!

Location:
trunk/sources/HeuristicLab.Hive.Client.Console/3.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Console/3.2/HeuristicLab.Hive.Client.Console-3.2.csproj

    r1534 r1579  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
     6    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{8B14A35E-DBDF-43EB-B019-23E9FBC5A35E}</ProjectGuid>
     
    121121    <EmbeddedResource Include="EventLogEntryForm.resx">
    122122      <DependentUpon>EventLogEntryForm.cs</DependentUpon>
     123      <SubType>Designer</SubType>
    123124    </EmbeddedResource>
    124125    <EmbeddedResource Include="HiveClientConsole.resx">
     
    133134    <EmbeddedResource Include="Recurrence.resx">
    134135      <DependentUpon>Recurrence.cs</DependentUpon>
     136      <SubType>Designer</SubType>
    135137    </EmbeddedResource>
    136138    <Compile Include="Properties\Resources.Designer.cs">
     
    164166  </ItemGroup>
    165167  <ItemGroup>
     168    <ProjectReference Include="..\..\HeuristicLab.Hive.Contracts\3.2\HeuristicLab.Hive.Contracts-3.2.csproj">
     169      <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project>
     170      <Name>HeuristicLab.Hive.Contracts-3.2</Name>
     171    </ProjectReference>
    166172    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
    167173      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
  • trunk/sources/HeuristicLab.Hive.Client.Console/3.2/HiveClientConsole.cs

    r1530 r1579  
    3131using HeuristicLab.Hive.Client.Console.ClientService;
    3232using ZedGraph;
     33using HeuristicLab.Hive.Contracts;
    3334
    3435namespace HeuristicLab.Hive.Client.Console
     
    108109      try
    109110      {
    110         cccc = new ClientConsoleCommunicatorClient(new NetTcpBinding(), new EndpointAddress(ENDPOINTADRESS));
     111        //changed by MB, 16.04.09
     112        //cccc = new ClientConsoleCommunicatorClient(new NetTcpBinding(), new EndpointAddress(ENDPOINTADRESS));
     113        cccc = new ClientConsoleCommunicatorClient(WcfSettings.GetBinding(), new EndpointAddress(ENDPOINTADRESS));
    111114        cccc.GetStatusInfosCompleted += new EventHandler<GetStatusInfosCompletedEventArgs>(cccc_GetStatusInfosCompleted);
    112115        cccc.GetCurrentConnectionCompleted += new EventHandler<GetCurrentConnectionCompletedEventArgs>(cccc_GetCurrentConnectionCompleted);
  • trunk/sources/HeuristicLab.Hive.Client.Console/3.2/app.config

    r1530 r1579  
    66        </sectionGroup>
    77    </configSections>
    8     <system.serviceModel>
    9         <bindings>
    10             <netTcpBinding>
    11                 <binding name="NetTcpBinding_IClientConsoleCommunicator" closeTimeout="00:01:00"
    12                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    13                     transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
    14                     hostNameComparisonMode="StrongWildcard" listenBacklog="10"
    15                     maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
    16                     maxReceivedMessageSize="65536">
    17                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    18                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    19                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    20                         enabled="false" />
    21                     <security mode="None">
    22                         <transport clientCredentialType="None" protectionLevel="None" />
    23                         <message clientCredentialType="None" />
    24                     </security>
    25                 </binding>
    26             </netTcpBinding>
    27         </bindings>
    28         <client>
    29             <endpoint address="net.tcp://127.0.0.1:8000/ClientConsole/ClientConsoleCommunicator"
    30                 binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IClientConsoleCommunicator"
    31                 contract="ClientService.IClientConsoleCommunicator" name="NetTcpBinding_IClientConsoleCommunicator">
    32                 <identity>
    33                     <userPrincipalName value="mse08026@fhs-hagenberg.ac.at" />
    34                 </identity>
    35             </endpoint>
    36         </client>
    37     </system.serviceModel>
    38     <userSettings>
     8       <userSettings>
    399        <HeuristicLab.Hive.Client.Console.Properties.Settings>
    4010            <setting name="IpAdress" serializeAs="String">
Note: See TracChangeset for help on using the changeset viewer.