pulling query handling through the handlers. adding (non-functional,

work-in-progress) HttpHandler.

NOTE: non-active code. does not glow in the dark. non-combustible.
This commit is contained in:
Dr Scofield
2008-07-18 19:28:52 +00:00
parent c0e389cfff
commit 6a7d544497
2 changed files with 4 additions and 2 deletions

View File

@@ -114,7 +114,7 @@ namespace OpenSim.Framework.Servers
/// </remarks>
public OSHttpXmlRpcHandler(XmlRpcMethod handler, string methodName, Regex path,
Dictionary<string, Regex> headers, Regex whitelist)
: base(new Regex(@"^POST$", RegexOptions.IgnoreCase | RegexOptions.Compiled), path, headers,
: base(new Regex(@"^POST$", RegexOptions.IgnoreCase | RegexOptions.Compiled), path, null, headers,
new Regex(@"^(text|application)/xml", RegexOptions.IgnoreCase | RegexOptions.Compiled),
whitelist)
{