Filling in the blanks: The "meat" of the REST console

This commit is contained in:
Melanie
2009-08-17 05:00:30 +01:00
parent bf8e07606f
commit 002940dd5d
4 changed files with 392 additions and 14 deletions

View File

@@ -77,16 +77,16 @@ namespace OpenSim.Server.Base
m_HttpServer = new BaseHttpServer(port);
MainServer.Instance = m_HttpServer;
}
protected override void Initialise()
{
m_HttpServer.Start();
if (MainConsole.Instance is RemoteConsole)
{
((RemoteConsole)MainConsole.Instance).SetServer(m_HttpServer);
}
}
protected override void Initialise()
{
m_HttpServer.Start();
}
}
}