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!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Console/3.2/ServiceLocator.cs

    r1530 r1579  
    66using HeuristicLab.Hive.Contracts.Interfaces;
    77using System.ServiceModel;
     8using HeuristicLab.Hive.Contracts;
    89
    910namespace HeuristicLab.Hive.Server.ServerConsole {
     
    2728        Port != String.Empty) {
    2829
    29         NetTcpBinding binding =
    30              new NetTcpBinding(SecurityMode.None, true);
    31 
    32         binding.MaxReceivedMessageSize = 5000000;
     30        //binding.MaxReceivedMessageSize = 5000000;
    3331
    3432        ChannelFactory<IServerConsoleFacade> factory =
    3533          new ChannelFactory<IServerConsoleFacade>(
    36             binding,
     34            WcfSettings.GetBinding(),
    3735            new EndpointAddress("net.tcp://" + Address + ":" + Port + "/HiveServerConsole/ServerConsoleFacade"));
    3836
Note: See TracChangeset for help on using the changeset viewer.