aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Servers/BaseHttpServer.cs
diff options
context:
space:
mode:
authorMW2007-06-22 22:30:39 +0000
committerMW2007-06-22 22:30:39 +0000
commitb2eb668814586f6c4df7644ed33e9574a0697fc0 (patch)
tree906be1a7385705425bbd0079e7a59f33060f037f /Common/OpenSim.Servers/BaseHttpServer.cs
parentStarted work on CAPS support, now we have our first test capability, MapLayer... (diff)
downloadopensim-SC_OLD-b2eb668814586f6c4df7644ed33e9574a0697fc0.zip
opensim-SC_OLD-b2eb668814586f6c4df7644ed33e9574a0697fc0.tar.gz
opensim-SC_OLD-b2eb668814586f6c4df7644ed33e9574a0697fc0.tar.bz2
opensim-SC_OLD-b2eb668814586f6c4df7644ed33e9574a0697fc0.tar.xz
Deleted some comments being wrote to console
Diffstat (limited to '')
-rw-r--r--Common/OpenSim.Servers/BaseHttpServer.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Common/OpenSim.Servers/BaseHttpServer.cs b/Common/OpenSim.Servers/BaseHttpServer.cs
index 71c36a7..1071692 100644
--- a/Common/OpenSim.Servers/BaseHttpServer.cs
+++ b/Common/OpenSim.Servers/BaseHttpServer.cs
@@ -213,7 +213,7 @@ namespace OpenSim.Servers
213 //Console.WriteLine(requestBody); 213 //Console.WriteLine(requestBody);
214 214
215 string responseString = ""; 215 string responseString = "";
216 Console.WriteLine("new request " + request.ContentType); 216 //Console.WriteLine("new request " + request.ContentType);
217 switch (request.ContentType) 217 switch (request.ContentType)
218 { 218 {
219 case "text/xml": 219 case "text/xml":
@@ -228,7 +228,6 @@ namespace OpenSim.Servers
228 case "application/xml": 228 case "application/xml":
229 // probably LLSD we hope, otherwise it should be ignored by the parser 229 // probably LLSD we hope, otherwise it should be ignored by the parser
230 // responseString = ParseLLSDXML(requestBody); 230 // responseString = ParseLLSDXML(requestBody);
231 Console.WriteLine(" request " + request.HttpMethod + " to " + request.RawUrl);
232 responseString = ParseREST(requestBody, request.RawUrl, request.HttpMethod); 231 responseString = ParseREST(requestBody, request.RawUrl, request.HttpMethod);
233 response.AddHeader("Content-type", "application/xml"); 232 response.AddHeader("Content-type", "application/xml");
234 break; 233 break;