aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs
diff options
context:
space:
mode:
authorDr Scofield2009-04-24 07:03:06 +0000
committerDr Scofield2009-04-24 07:03:06 +0000
commit9bdfb9034d204fbea25377282f3b2c853a1206ec (patch)
treed43f5112429da6b3ea40bd700d1f10ceccbd08b0 /OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs
parent* Implements Microthreading for MRM scripting. (diff)
downloadopensim-SC_OLD-9bdfb9034d204fbea25377282f3b2c853a1206ec.zip
opensim-SC_OLD-9bdfb9034d204fbea25377282f3b2c853a1206ec.tar.gz
opensim-SC_OLD-9bdfb9034d204fbea25377282f3b2c853a1206ec.tar.bz2
opensim-SC_OLD-9bdfb9034d204fbea25377282f3b2c853a1206ec.tar.xz
From: Alan Webb <alan_webb@us.ibm.com>
This commit adds RestFileServices to the REST ApplicationPlugin service.
Diffstat (limited to '')
-rw-r--r--OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs
index 2ce5166..9a8aef0 100644
--- a/OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs
+++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs
@@ -1272,8 +1272,9 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
1272 1272
1273 if (buffer != null && buffer.Length != 0) 1273 if (buffer != null && buffer.Length != 0)
1274 { 1274 {
1275 Rest.Log.DebugFormat("{0} Entity buffer, length = {1} : <{2}>", 1275 Rest.Log.DebugFormat("{0} Entity buffer, length = {1}", MsgId, buffer.Length);
1276 MsgId, buffer.Length, encoding.GetString(buffer)); 1276 // Rest.Log.DebugFormat("{0} Entity buffer, length = {1} : <{2}>",
1277 // MsgId, buffer.Length, encoding.GetString(buffer));
1277 response.OutputStream.Write(buffer, 0, buffer.Length); 1278 response.OutputStream.Write(buffer, 0, buffer.Length);
1278 } 1279 }
1279 1280