From 7821cca2f5a7c31a41446656f218fdaf450969c0 Mon Sep 17 00:00:00 2001
From: Charles Krinke
Date: Wed, 11 Jun 2008 14:02:16 +0000
Subject: Mantis#1514. Thank you kindly, Boscata for an InventoryServer patch
to allow the InventoryServer to work with MSSQL..
---
.../Communications/OGS1/OGS1InventoryService.cs | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
(limited to 'OpenSim/Region')
diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
index 9b3d878..dfc741a 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
@@ -179,6 +179,26 @@ namespace OpenSim.Region.Communications.OGS1
///
///
///
+ public bool UpdateFolder(InventoryFolderBase folder)
+ {
+ try
+ {
+ return SynchronousRestObjectPoster.BeginPostObject(
+ "POST", _inventoryServerUrl + "/UpdateFolder/", folder);
+ }
+ catch (WebException e)
+ {
+ m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Update inventory folder operation failed, {0} {1}",
+ e.Source, e.Message);
+ }
+
+ return false;
+ }
+
+ ///
+ ///
+ ///
+ ///
public bool MoveFolder(InventoryFolderBase folder)
{
try
--
cgit v1.1