Add the XInventoryServicesConnector, a new inventory connector without the cruft

of the old one that makes inventory crash on folder creation. This is just
the connector part, the handler is still ont he todo list.
This commit is contained in:
Melanie
2010-01-05 04:22:03 +00:00
parent be41ba6670
commit aca01f5415
2 changed files with 187 additions and 15 deletions

View File

@@ -108,14 +108,14 @@ namespace OpenSim.Server.Handlers.Presence
out info.RegionID))
return FailureResult();
foreach (KeyValuePair<string, string> kvp in request)
foreach (KeyValuePair<string, object> kvp in request)
{
if (kvp.Key == "METHOD" ||
kvp.Key == "PrincipalID" ||
kvp.Key == "RegionID")
continue;
info.Data[kvp.Key] = kvp.Value;
info.Data[kvp.Key] = kvp.Value.ToString();
}
if (m_PresenceService.Report(info))