diff options
author | MW | 2007-06-22 22:30:39 +0000 |
---|---|---|
committer | MW | 2007-06-22 22:30:39 +0000 |
commit | b2eb668814586f6c4df7644ed33e9574a0697fc0 (patch) | |
tree | 906be1a7385705425bbd0079e7a59f33060f037f /Common | |
parent | Started work on CAPS support, now we have our first test capability, MapLayer... (diff) | |
download | opensim-SC-b2eb668814586f6c4df7644ed33e9574a0697fc0.zip opensim-SC-b2eb668814586f6c4df7644ed33e9574a0697fc0.tar.gz opensim-SC-b2eb668814586f6c4df7644ed33e9574a0697fc0.tar.bz2 opensim-SC-b2eb668814586f6c4df7644ed33e9574a0697fc0.tar.xz |
Deleted some comments being wrote to console
Diffstat (limited to 'Common')
-rw-r--r-- | Common/OpenSim.Servers/BaseHttpServer.cs | 3 |
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; |