* @exception Exception throws an exception if an error occurs
*/
public void start(PrintWriter consoleWriter)
throws Exception
{
DRDAServerStarter starter = new DRDAServerStarter();
starter.setStartInfo(hostAddress,portNumber,consoleWriter);
this.setLogWriter(consoleWriter);
startNetworkServer();
starter.boot(false,null);
}