Can now set the http ports that grid server and user server use.

This commit is contained in:
MW
2007-09-14 06:02:24 +00:00
parent b31fc4980f
commit 0d685d6a52
4 changed files with 19 additions and 3 deletions

View File

@@ -93,7 +93,7 @@ namespace OpenSim.Grid.UserServer
m_loginService = new UserLoginService(m_userManager, Cfg, Cfg.DefaultStartupMsg);
MainLog.Instance.Verbose("Main.cs:Startup() - Starting HTTP process");
BaseHttpServer httpServer = new BaseHttpServer(8002);
BaseHttpServer httpServer = new BaseHttpServer((int)Cfg.HttpPort);
httpServer.AddXmlRPCHandler("login_to_simulator", m_loginService.XmlRpcLoginMethod);