minor: replace xmlprc 'no method found' magic number with constant from xmlrpc library
parent
7870152d23
commit
e67341f24c
|
@ -736,8 +736,11 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
xmlRpcResponse = new XmlRpcResponse();
|
xmlRpcResponse = new XmlRpcResponse();
|
||||||
|
|
||||||
// Code set in accordance with http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php
|
// Code set in accordance with http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php
|
||||||
xmlRpcResponse.SetFault(-32601, String.Format("Requested method [{0}] not found", methodName));
|
xmlRpcResponse.SetFault(
|
||||||
|
XmlRpcErrorCodes.SERVER_ERROR_METHOD,
|
||||||
|
String.Format("Requested method [{0}] not found", methodName));
|
||||||
}
|
}
|
||||||
|
|
||||||
responseString = XmlRpcResponseSerializer.Singleton.Serialize(xmlRpcResponse);
|
responseString = XmlRpcResponseSerializer.Singleton.Serialize(xmlRpcResponse);
|
||||||
|
@ -757,6 +760,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
response.SendChunked = false;
|
response.SendChunked = false;
|
||||||
response.ContentLength64 = buf.Length;
|
response.ContentLength64 = buf.Length;
|
||||||
response.ContentEncoding = Encoding.UTF8;
|
response.ContentEncoding = Encoding.UTF8;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
response.OutputStream.Write(buf, 0, buf.Length);
|
response.OutputStream.Write(buf, 0, buf.Length);
|
||||||
|
|
Loading…
Reference in New Issue