Commit [r11516] <https://sourceforge.net/p/oorexx/code-0/11516/> should fix the issues.
can you advice how one can refer to two different terminal sessions in the > same program (with the intention to start the scserver in one ADDRESS > statement first and then the scclient in another ADDRESS statement > You might use something like below to run an automated test for sf/sc server plus two concurrent clients (the fix has also added a delayed shutdown feature for the servers to facilitate such automated testing): ~~~ use arg prefix = "sc" job = .Job~new(prefix) job~start("server") call SysSleep 0.5 -- wait for server to become ready job~start("client") job~start("client") ::class job ::method init expose prefix use strict arg prefix ::method server expose prefix address "" "rexx" prefix || "server" with input using ("3") ::method client unguarded expose prefix address "" "rexx" prefix || "client" with input using ((111, 222, 333, "x")) ~~~
_______________________________________________ Oorexx-devel mailing list Oorexx-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/oorexx-devel