I finally got around to testing com support in j 8.04.  My super rigorous
test program

class Program
    {
        static void Main(string[] args)
        {
            JServer js0 = new JServer(JServer.JScriptType.OnlyProfile);
            JServer js1 = new JServer(JServer.JScriptType.OnlyProfile);
            JServer js2 = new JServer(JServer.JScriptType.OnlyProfile);
            js0.jShowServer = true;
            js1.jShowServer = true;
            js2.jShowServer = true;
            js0.jDo("i. 2 3 5");
            js1.jDo(";:'go ahead cut me up cowboy'");
            js2.jDo("9!:14 ''");
        }
    }

brings up three exe servers as expected.

I prefer exe servers to dll servers because each process runs in it's own
memory space.

We still get a console flash when the first server is created but so far
things behave as expected.

Kudos to J jsoftware for bringing back a classic.

-- 
John D. Baker
[email protected]
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to