Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim
commit
e49abf446a
|
@ -34,6 +34,7 @@ namespace OpenSim.Framework
|
|||
{
|
||||
UUID UUID { get; }
|
||||
ISceneObject CloneForNewScene();
|
||||
string ToXml2();
|
||||
string ExtraToXmlString();
|
||||
void ExtraFromXmlString(string xmlstr);
|
||||
string GetStateSnapshot();
|
||||
|
|
|
@ -99,7 +99,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Authentication
|
|||
if (!m_Registered)
|
||||
{
|
||||
m_Registered = true;
|
||||
new HGAuthServiceInConnector(m_Config, MainServer.Instance);
|
||||
new HGAuthServiceInConnector(m_Config, MainServer.Instance, scene);
|
||||
|
||||
//Object[] args = new Object[] { m_Config, scene.CommsManager.HttpServer };
|
||||
//ServerUtils.LoadPlugin<IAuthenticationService>("OpenSim.Server.Handlers.dll:HGAuthServiceInConnector", args);
|
||||
|
|
|
@ -37,6 +37,7 @@ using OpenMetaverse.Packets;
|
|||
using OpenSim.Framework;
|
||||
using OpenSim.Region.Framework.Interfaces;
|
||||
using OpenSim.Region.Physics.Manager;
|
||||
using OpenSim.Region.Framework.Scenes.Serialization;
|
||||
|
||||
namespace OpenSim.Region.Framework.Scenes
|
||||
{
|
||||
|
@ -3366,6 +3367,11 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
return sog;
|
||||
}
|
||||
|
||||
public virtual string ToXml2()
|
||||
{
|
||||
return SceneObjectSerializer.ToXml2Format(this);
|
||||
}
|
||||
|
||||
public virtual string ExtraToXmlString()
|
||||
{
|
||||
return "<ExtraFromAssetID>" + GetFromAssetID().ToString() + "</ExtraFromAssetID>";
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
using System;
|
||||
using Nini.Config;
|
||||
using OpenSim.Framework;
|
||||
using OpenSim.Server.Base;
|
||||
using OpenSim.Services.Interfaces;
|
||||
using OpenSim.Framework.Servers.HttpServer;
|
||||
|
@ -38,7 +39,7 @@ namespace OpenSim.Server.Handlers.Authentication
|
|||
{
|
||||
private IAuthenticationService m_AuthenticationService;
|
||||
|
||||
public HGAuthServiceInConnector(IConfigSource config, IHttpServer server) :
|
||||
public HGAuthServiceInConnector(IConfigSource config, IHttpServer server, IScene registry) :
|
||||
base(config, server)
|
||||
{
|
||||
IConfig serverConfig = config.Configs["AuthenticationService"];
|
||||
|
@ -53,6 +54,7 @@ namespace OpenSim.Server.Handlers.Authentication
|
|||
|
||||
Object[] args = new Object[] { config };
|
||||
m_AuthenticationService = ServerUtils.LoadPlugin<IAuthenticationService>(authenticationService, args);
|
||||
registry.RegisterModuleInterface<IAuthenticationService>(m_AuthenticationService);
|
||||
|
||||
HGAuthenticationHandlers m_handlers = new HGAuthenticationHandlers(m_AuthenticationService);
|
||||
server.AddXmlRPCHandler("hg_new_auth_key", m_handlers.GenerateKeyMethod);
|
||||
|
|
|
@ -83,6 +83,8 @@ namespace OpenSim.Services.AuthenticationService
|
|||
|
||||
m_PerformAuthentication = authConfig.GetBoolean("Authenticate", true);
|
||||
m_AuthorityURL = "http://" + authConfig.GetString("Authority", "localhost");
|
||||
if (!m_AuthorityURL.EndsWith("/"))
|
||||
m_AuthorityURL += "/";
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue