send data as bin not string to http lower level
parent
f9c9dc585c
commit
6f4052561e
|
@ -394,9 +394,14 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
response["int_response_code"] = 200;
|
response["int_response_code"] = 200;
|
||||||
response["content_type"] = "text/plain";
|
response["content_type"] = "text/plain";
|
||||||
|
|
||||||
response["str_response_string"] = m_webFetchHandler.FetchInventoryDescendentsRequest(
|
// response["str_response_string"] = m_webFetchHandler.FetchInventoryDescendentsRequest(
|
||||||
requestinfo.request["body"].ToString(), String.Empty, String.Empty, null, null);
|
// requestinfo.request["body"].ToString(), String.Empty, String.Empty, null, null);
|
||||||
|
|
||||||
|
response["bin_response_data"] = System.Text.Encoding.UTF8.GetBytes(
|
||||||
|
m_webFetchHandler.FetchInventoryDescendentsRequest(
|
||||||
|
requestinfo.request["body"].ToString(),
|
||||||
|
String.Empty, String.Empty, null, null)
|
||||||
|
);
|
||||||
lock (responses)
|
lock (responses)
|
||||||
{
|
{
|
||||||
lock(dropedResponses)
|
lock(dropedResponses)
|
||||||
|
|
Loading…
Reference in New Issue