.NET NamedPipe Application Server

Is this the correct way to create a .net namedpipe ROSDK-Server? Because, my Delphi-Client can’t find the pipe with the given name… HTTP-Channel works…

static class Program
{
    public static int Main(string[] args)
    {
        ApplicationServer server = new ApplicationServer("NamedPipeServer");
        server.NetworkServer.ServerChannel = new NamedPipeServerChannel
        {
            Path = "namedpipeserver",
            Server = "."
        };

        server.Run(args);
        return 0;
    }
}

Hello

Unfortunately we were not able to reproduce the issue.
Could you send a testcase (both client and server side) to support@ ?

Thanks in advance

Hello

Thanks for the testcase.
You need to adjust the server startup code a bit:

        server.NetworkServer.ServerChannel = new NamedPipeServerChannel
        {
            Path = "namedpipeserver",
            Server = ".",
            AllowAll = true,
            NetworkByteOrder = <<has to be set to the same value on both client and server>>
        };

Regards