aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseHttpServer.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/BaseHttpServer.cs (renamed from Common/OpenSim.Servers/BaseHttpServer.cs)9
1 files changed, 4 insertions, 5 deletions
diff --git a/Common/OpenSim.Servers/BaseHttpServer.cs b/OpenSim/Framework/Servers/BaseHttpServer.cs
index e55e33c..8c8204a 100644
--- a/Common/OpenSim.Servers/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/BaseHttpServer.cs
@@ -31,12 +31,11 @@ using System.Net;
31using System.Text; 31using System.Text;
32using System.Text.RegularExpressions; 32using System.Text.RegularExpressions;
33using System.Threading; 33using System.Threading;
34//using OpenSim.CAPS;
35using Nwc.XmlRpc; 34using Nwc.XmlRpc;
36using System.Collections; 35using System.Collections;
37using OpenSim.Framework.Console; 36using OpenSim.Framework.Console;
38 37
39namespace OpenSim.Servers 38namespace OpenSim.Framework.Servers
40{ 39{
41 public class BaseHttpServer 40 public class BaseHttpServer
42 { 41 {
@@ -171,7 +170,7 @@ namespace OpenSim.Servers
171 protected virtual string ParseLLSDXML(string requestBody) 170 protected virtual string ParseLLSDXML(string requestBody)
172 { 171 {
173 // dummy function for now - IMPLEMENT ME! 172 // dummy function for now - IMPLEMENT ME!
174 Console.WriteLine("LLSD request "+requestBody); 173 //Console.WriteLine("LLSD request "+requestBody);
175 string resp = ""; 174 string resp = "";
176 if (firstcaps) 175 if (firstcaps)
177 { 176 {
@@ -195,7 +194,7 @@ namespace OpenSim.Servers
195 } 194 }
196 catch (Exception e) 195 catch (Exception e)
197 { 196 {
198 Console.WriteLine(e.ToString()); 197 //Console.WriteLine(e.ToString());
199 } 198 }
200 return responseString; 199 return responseString;
201 } 200 }
@@ -273,7 +272,7 @@ namespace OpenSim.Servers
273 } 272 }
274 catch (Exception e) 273 catch (Exception e)
275 { 274 {
276 Console.WriteLine(e.ToString()); 275 //Console.WriteLine(e.ToString());
277 } 276 }
278 } 277 }
279 278