All Projects → beetlex-io → ClusterConfiguration

beetlex-io / ClusterConfiguration

Licence: Apache-2.0 license
Beetlex Webapi cluster configuration

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language
C#
18002 projects

Cluster configuration

Beetlex Webapi cluster configuration

run

dotnet FastHttpApi.ClusterConfiguration.dll

change manager password

openHttpConfig.jsonfile change

    "Manager": "admin",
    "ManagerPWD": "123456",

Cluster Management

FastHttpApi using

HttpClusterApi = new BeetleX.FastHttpApi.Clients.HttpClusterApi();
await HttpClusterApi.LoadNodeSource("default", "http://localhost:8080");

create interface proxy

    public interface IDataService
    {
        [Get(Route = "hello/{name}")]
        string Hello(string name);
    }

 DataService = HttpClusterApi.Create<IDataService>();
 var result = DataService.Hello("henry");

sample code Cluster projects

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].