I am starting a network server in addition to an embedded server. I'd like to do this programmatically, by calling
NetworkServerControl server = new NetworkServerControl(); server.start (null); as described here: http://docs.oracle.com/javadb/10.5.1.1/adminguide/tadminconfig814963.html My question is: should I start the network server first or the embedded server? And when shutting down, which one should I shutdown first? Thanks! Yoel Spotts
