[EMAIL PROTECTED] writes:
> Hi Knut,
>
> Thanks for your quick response.
>
> Then, how can I verify whether Derby, started using
> derby.drda.startNetworkServer=true and org.apache.derby.jdbc.EmbeddedDriver,
> is ready or not to accept clients like NetworkServerControl#ping() ?
Haven't tested, but I think the following should work:
NetworkServerControl nsc = new NetworkServerControl(address, port);
try {
nsc.ping();
System.out.println("started");
} catch (Exception e) {
System.out.println("not started");
}
--
Knut Anders