* re-fixed the utf-16 bug in xmlRpcResponse serialization

* added LLSDStreamHandler.cs to Caps (Haven't enabled it yet, though)
* removed last traces of old rest handling
This commit is contained in:
lbsa71
2007-07-04 16:28:59 +00:00
parent 6a2588454a
commit 5c32b33a66
17 changed files with 387 additions and 490 deletions

View File

@@ -7,19 +7,19 @@ namespace OpenSim.Framework.Servers
{
public abstract class BaseStreamHandler : IStreamHandler
{
public string ContentType
virtual public string ContentType
{
get { return "application/xml"; }
}
private string m_httpMethod;
public string HttpMethod
virtual public string HttpMethod
{
get { return m_httpMethod; }
}
private string m_path;
public string Path
virtual public string Path
{
get { return m_path; }
}