<div dir="ltr"><div>I'm trying to run a pvserver(Paraview 5.3) with multiple clients.</div><div>I have a little problem when running the server.</div><div><br></div><div>Here is how I launch locally all the processes on a .bat file :</div><div>    start mpiexec.exe -np 1 pvserver.exe --server-port=11111</div><div>    start mpiexec.exe -np 1 pvserver.exe --server-port=11112</div><div>    start pvbatch.exe script_box.py DESKTOP-HAFBULV 11111</div><div>    start pvbatch.exe script_box.py DESKTOP-HAFBULV 11112</div><div><br></div><div>With "script_box.py" doing the connection and some stuff :</div><div>    from paraview.simple import *</div><div>    import sys</div><div>    </div><div>    server_name = sys.argv[1]</div><div>    server_port = int(sys.argv[2])</div><div>    </div><div>    connection = servermanager.Connect(server_name, server_port)</div><div>    </div><div>    servermanager.LoadPlugin('...')</div><div>    </div><div>    # create a new 'Box'</div><div>    # create a new 'Triangulate'</div><div>    # create a new 'Clean'</div><div>    ...</div><div><br></div><div>Whenever a client gets connected, the script is executed but the server exits immediately after that,</div><div>the problem is that all the others clients lose connections and the server disconnect.</div><div><br></div><div>I don't call servermanager.Disconnect() and I tried to run pvserver with --multi-clients but it has no effect,</div><div><br></div><div>Is there is any specific way to manage multiple connections with a pvserver ?</div><div><br></div><div>Any help would be appreciated !</div></div>