Yes! First test of new login service done still in 2009! Bombs in auth, because the data migration is missing. Will fix it next year...

* HAPPY NEW YEAR!
This commit is contained in:
Diva Canto
2009-12-31 20:51:35 -08:00
parent 5ab871cb6a
commit 1387919c20
7 changed files with 433 additions and 2 deletions

View File

@@ -47,6 +47,7 @@ namespace OpenSim.Server.Handlers.Login
public LLLoginServiceInConnector(IConfigSource config, IHttpServer server, IScene scene) :
base(config, server, String.Empty)
{
m_log.Debug("[LLLOGIN IN CONNECTOR]: Starting...");
string loginService = ReadLocalServiceFromConfig(config);
ISimulationService simService = scene.RequestModuleInterface<ISimulationService>();
@@ -85,7 +86,7 @@ namespace OpenSim.Server.Handlers.Login
private void InitializeHandlers(IHttpServer server)
{
LLLoginHandlers loginHandlers = new LLLoginHandlers(m_LoginService);
server.AddXmlRPCHandler("Login_to_simulator", loginHandlers.HandleXMLRPCLogin, false);
server.AddXmlRPCHandler("login_to_simulator", loginHandlers.HandleXMLRPCLogin, false);
server.SetDefaultLLSDHandler(loginHandlers.HandleLLSDLogin);
}