aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Inventory
diff options
context:
space:
mode:
authorDiva Canto2009-08-11 12:48:19 -0700
committerDiva Canto2009-08-11 12:48:19 -0700
commit08544e576ddc7a980d6dde76680970f17789011b (patch)
treefd5bfdca61d412292018f357a21f7d3074ecdeb8 /OpenSim/Services/Connectors/Inventory
parentMerge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-08544e576ddc7a980d6dde76680970f17789011b.zip
opensim-SC_OLD-08544e576ddc7a980d6dde76680970f17789011b.tar.gz
opensim-SC_OLD-08544e576ddc7a980d6dde76680970f17789011b.tar.bz2
opensim-SC_OLD-08544e576ddc7a980d6dde76680970f17789011b.tar.xz
Disabling the remote call for the time being, so that I can test it on a grid before making it live.
Diffstat (limited to 'OpenSim/Services/Connectors/Inventory')
-rw-r--r--OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs21
1 files changed, 11 insertions, 10 deletions
diff --git a/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs b/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs
index 4837c0d..5efcf3a 100644
--- a/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs
@@ -163,16 +163,17 @@ namespace OpenSim.Services.Connectors
163 /// <returns></returns> 163 /// <returns></returns>
164 public Dictionary<AssetType, InventoryFolderBase> GetSystemFolders(string userID, UUID sessionID) 164 public Dictionary<AssetType, InventoryFolderBase> GetSystemFolders(string userID, UUID sessionID)
165 { 165 {
166 try 166 // !!! Not just yet.
167 { 167 //try
168 return SynchronousRestSessionObjectPoster<Guid, Dictionary<AssetType, InventoryFolderBase>>.BeginPostObject( 168 //{
169 "GET", m_ServerURI + "/SystemFolders/", new Guid(userID), sessionID.ToString(), userID.ToString()); 169 // return SynchronousRestSessionObjectPoster<Guid, Dictionary<AssetType, InventoryFolderBase>>.BeginPostObject(
170 } 170 // "GET", m_ServerURI + "/SystemFolders/", new Guid(userID), sessionID.ToString(), userID.ToString());
171 catch (Exception e) 171 //}
172 { 172 //catch (Exception e)
173 m_log.ErrorFormat("[INVENTORY CONNECTOR]: GetFolderForType operation failed, {0} {1}", 173 //{
174 e.Source, e.Message); 174 // m_log.ErrorFormat("[INVENTORY CONNECTOR]: GetFolderForType operation failed, {0} {1}",
175 } 175 // e.Source, e.Message);
176 //}
176 177
177 return new Dictionary<AssetType, InventoryFolderBase>(); 178 return new Dictionary<AssetType, InventoryFolderBase>();
178 } 179 }