diff options
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index a8ece79..2c0d8f0 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -1539,11 +1539,34 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1539 | 1539 | ||
1540 | internal void DoHTTPGruntWork(Hashtable responsedata, OSHttpResponse response) | 1540 | internal void DoHTTPGruntWork(Hashtable responsedata, OSHttpResponse response) |
1541 | { | 1541 | { |
1542 | //m_log.Info("[BASE HTTP SERVER]: Doing HTTP Grunt work with response"); | 1542 | int responsecode; |
1543 | int responsecode = (int)responsedata["int_response_code"]; | 1543 | string responseString; |
1544 | string responseString = (string)responsedata["str_response_string"]; | 1544 | string contentType; |
1545 | string contentType = (string)responsedata["content_type"]; | ||
1546 | 1545 | ||
1546 | if (responsedata == null) | ||
1547 | { | ||
1548 | responsecode = 500; | ||
1549 | responseString = "No response could be obtained"; | ||
1550 | contentType = "text/plain"; | ||
1551 | responsedata = new Hashtable(); | ||
1552 | } | ||
1553 | else | ||
1554 | { | ||
1555 | try | ||
1556 | { | ||
1557 | //m_log.Info("[BASE HTTP SERVER]: Doing HTTP Grunt work with response"); | ||
1558 | responsecode = (int)responsedata["int_response_code"]; | ||
1559 | responseString = (string)responsedata["str_response_string"]; | ||
1560 | contentType = (string)responsedata["content_type"]; | ||
1561 | } | ||
1562 | catch | ||
1563 | { | ||
1564 | responsecode = 500; | ||
1565 | responseString = "No response could be obtained"; | ||
1566 | contentType = "text/plain"; | ||
1567 | responsedata = new Hashtable(); | ||
1568 | } | ||
1569 | } | ||
1547 | 1570 | ||
1548 | if (responsedata.ContainsKey("error_status_text")) | 1571 | if (responsedata.ContainsKey("error_status_text")) |
1549 | { | 1572 | { |