* Added XMLRPC Controller Module to OpenSimMain which allows XML-RPC queries to be sent to the core application.

* Disabled by default, but has two functions so far -- shutdown (timed or now), and create-region.
* Added SendGeneralAlert function to SceneManager allowing all-user alerts to be sent from OpenSimMain.
This commit is contained in:
Adam Frisby
2007-10-25 12:13:58 +00:00
parent 60e4541865
commit 2048d611cf
5 changed files with 148 additions and 1 deletions

View File

@@ -60,6 +60,7 @@ namespace OpenSim
public bool user_accounts;
public bool m_gridLocalAsset;
private OpenSimController m_controller;
protected ModuleLoader m_moduleLoader;
protected LocalLoginService m_loginService;
@@ -162,6 +163,8 @@ namespace OpenSim
base.StartUp();
m_controller = new OpenSimController(this, m_httpServer);
if (m_sandbox)
{
LocalInventoryService inventoryService = new LocalInventoryService();