C# thin client can connect to any port, specify it in the endpoint string
like this:

var clientCfg = new IgniteClientConfiguration("127.0.0.1:10901");
var client = Ignition.StartClient(clientCfg);


or

var clientCfg2 = new IgniteClientConfiguration
{
    Endpoints = new[] { "127.0.0.1:10901" }
};


On Thu, Jan 12, 2023 at 11:41 AM Charlin S <[email protected]> wrote:

> Hi All,
> My requirement is to connect a specific grid(server has multiple grids)
> from c# thin client, since its support only 10800 ports.
>
> Regards,
> Charlin
>
>
>
>

Reply via email to