*Fixed storage issue as noted in last commit of the OGS1 GridServer

*Reverted the default remote grid server port back to 8001 (from a port change to debug a previous issue)
This commit is contained in:
mingchen
2007-07-03 19:26:35 +00:00
parent e06ffb3981
commit 78e420f48b
5 changed files with 11 additions and 10 deletions

View File

@@ -121,7 +121,7 @@ namespace OpenSim.Grid.GridServer
m_gridManager.config = Cfg;
m_console.Verbose( "Main.cs:Startup() - Starting HTTP process");
BaseHttpServer httpServer = new BaseHttpServer(13801);
BaseHttpServer httpServer = new BaseHttpServer(8001);
//GridManagementAgent GridManagerAgent = new GridManagementAgent(httpServer, "gridserver", Cfg.SimSendKey, Cfg.SimRecvKey, managercallback);
httpServer.AddXmlRPCHandler("simulator_login", m_gridManager.XmlRpcSimulatorLoginMethod);
@@ -143,9 +143,9 @@ namespace OpenSim.Grid.GridServer
//break;
// lbsa71 : I guess these were never used?
//Listener.Prefixes.Add("http://+:13801/gods/");
//Listener.Prefixes.Add("http://+:13801/highestuuid/");
//Listener.Prefixes.Add("http://+:13801/uuidblocks/");
//Listener.Prefixes.Add("http://+:8001/gods/");
//Listener.Prefixes.Add("http://+:8001/highestuuid/");
//Listener.Prefixes.Add("http://+:8001/uuidblocks/");
httpServer.Start();