Thank you, patnad, for a patch to advance the UrlModule's functionality.

Mantis #3712
trunk
Melanie Thielker 2009-07-22 22:16:37 +00:00
parent c42d5feee3
commit 4b84bdb77e
1 changed files with 9 additions and 6 deletions

View File

@ -240,13 +240,16 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
private Hashtable HttpRequestHandler(Hashtable request) private Hashtable HttpRequestHandler(Hashtable request)
{ {
foreach (KeyValuePair<string, Object> kvp in request) string uri = request["uri"].ToString();
{ //A solution to this ugly mess would be to use only the /lslhttp/<UUID>/ part of the URI as the key.
m_log.DebugFormat("{0} = {1}", kvp.Key, kvp.Value.ToString()); UrlData url = m_UrlMap["http://"+System.Environment.MachineName+":"+m_HttpServer.Port.ToString()+uri];
}
//UUID.Random() below is a hack! Eventually we will do HTTP requests and responses properly.
url.engine.PostScriptEvent(url.itemID, "http_request", new Object[] { UUID.Random().ToString(), request["http-method"].ToString(), request["body"].ToString() });
Hashtable response = new Hashtable(); Hashtable response = new Hashtable();
response["int_response_code"] = 404; response["int_response_code"] = 200;
response["str_response_string"] = "Test"; response["str_response_string"] = "This is a generic response as OpenSim does not yet support proper responses. Your request has been passed to the object.";
return response; return response;
} }