From a423b3060b0149d5e5725307bf5edb7be88b238d Mon Sep 17 00:00:00 2001 From: diva Date: Thu, 26 Mar 2009 22:17:57 +0000 Subject: Notecard updates bypassing the regions. (HGStandalone only) --- OpenSim/Framework/Communications/Capabilities/Caps.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework/Communications') diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs index 8a4d145..db58975 100644 --- a/OpenSim/Framework/Communications/Capabilities/Caps.cs +++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs @@ -112,6 +112,10 @@ namespace OpenSim.Framework.Communications.Capabilities { get { return m_httpListener.SSLCommonName; } } + public CapsHandlers CapsHandlers + { + get { return m_capsHandlers; } + } // These are callbacks which will be setup by the scene so that we can update scene data when we // receive capability calls @@ -626,7 +630,9 @@ namespace OpenSim.Framework.Communications.Capabilities public string NoteCardAgentInventory(string request, string path, string param, OSHttpRequest httpRequest, OSHttpResponse httpResponse) { - m_log.Debug("[CAPS]: NoteCardAgentInventory Request in region: " + m_regionName); + m_log.Debug("[CAPS]: NoteCardAgentInventory Request in region: " + m_regionName + "\n" + request); + m_log.Debug("[CAPS]: NoteCardAgentInventory Request is: " + request); + //OpenMetaverse.StructuredData.OSDMap hash = (OpenMetaverse.StructuredData.OSDMap)OpenMetaverse.StructuredData.LLSDParser.DeserializeBinary(Utils.StringToBytes(request)); Hashtable hash = (Hashtable) LLSD.LLSDDeserialize(Utils.StringToBytes(request)); LLSDItemUpdate llsdRequest = new LLSDItemUpdate(); -- cgit v1.1