aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Inventory/InventoryServerInConnector.cs
diff options
context:
space:
mode:
authorDiva Canto2009-08-21 11:00:45 -0700
committerDiva Canto2009-08-21 11:00:45 -0700
commit33186527235091f95a7251ea66a713fdaee1c689 (patch)
treeddba8eb1bedf3243ef5767809e98f381bc615b93 /OpenSim/Server/Handlers/Inventory/InventoryServerInConnector.cs
parentMerge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-33186527235091f95a7251ea66a713fdaee1c689.zip
opensim-SC_OLD-33186527235091f95a7251ea66a713fdaee1c689.tar.gz
opensim-SC_OLD-33186527235091f95a7251ea66a713fdaee1c689.tar.bz2
opensim-SC_OLD-33186527235091f95a7251ea66a713fdaee1c689.tar.xz
Added a more sane InventoryServerMoveItemsHandler. Changed SynchronousRestObjectRequester so that it also understands PUTs.
Diffstat (limited to '')
-rw-r--r--OpenSim/Server/Handlers/Inventory/InventoryServerInConnector.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Inventory/InventoryServerInConnector.cs b/OpenSim/Server/Handlers/Inventory/InventoryServerInConnector.cs
index 6ef1d9d..10336b0 100644
--- a/OpenSim/Server/Handlers/Inventory/InventoryServerInConnector.cs
+++ b/OpenSim/Server/Handlers/Inventory/InventoryServerInConnector.cs
@@ -143,6 +143,9 @@ namespace OpenSim.Server.Handlers.Inventory
143 m_httpServer.AddStreamHandler( 143 m_httpServer.AddStreamHandler(
144 new RestDeserialiseSecureHandler<List<InventoryItemBase>, bool>( 144 new RestDeserialiseSecureHandler<List<InventoryItemBase>, bool>(
145 "POST", "/MoveItems/", MoveItems, CheckAuthSession)); 145 "POST", "/MoveItems/", MoveItems, CheckAuthSession));
146
147 m_httpServer.AddStreamHandler(new InventoryServerMoveItemsHandler(m_InventoryService));
148
146 149
147 // for persistent active gestures 150 // for persistent active gestures
148 m_httpServer.AddStreamHandler( 151 m_httpServer.AddStreamHandler(