Always throw an exception if MakeRequest (used for HTTP POST) fails. (Previously many exceptions were ignored)

Resolves http://opensimulator.org/mantis/view.php?id=6949
0.8.0.3
Oren Hurvitz 2013-12-19 10:51:57 +02:00
parent f901a38204
commit f90aee696a
2 changed files with 12 additions and 21 deletions

View File

@ -738,11 +738,11 @@ namespace OpenSim.Framework.Servers.HttpServer
}
catch (IOException e)
{
m_log.Error(String.Format("[BASE HTTP SERVER]: HandleRequest() threw {0} ", e.StackTrace), e);
m_log.Error("[BASE HTTP SERVER]: HandleRequest() threw exception ", e);
}
catch (Exception e)
{
m_log.Error(String.Format("[BASE HTTP SERVER]: HandleRequest() threw {0} ", e.StackTrace), e);
m_log.Error("[BASE HTTP SERVER]: HandleRequest() threw exception ", e);
try
{
byte[] buffer500 = SendHTML500(response);

View File

@ -1024,8 +1024,9 @@ namespace OpenSim.Framework
}
catch (Exception e)
{
m_log.DebugFormat(
"[FORMS]: exception occured {0} {1}: {2}{3}", verb, requestUrl, e.Message, e.StackTrace);
m_log.ErrorFormat("[FORMS]: Error sending request to {0}: {1}. Request: {2}", requestUrl, e.Message,
obj.Length > WebUtil.MaxRequestDiagLength ? obj.Remove(WebUtil.MaxRequestDiagLength) : obj);
throw e;
}
finally
{
@ -1043,27 +1044,17 @@ namespace OpenSim.Framework
{
if (resp.ContentLength != 0)
{
Stream respStream = null;
try
{
using (respStream = resp.GetResponseStream())
using (StreamReader reader = new StreamReader(respStream))
respstring = reader.ReadToEnd();
}
catch (Exception e)
{
m_log.DebugFormat(
"[FORMS]: Exception occured on receiving {0} {1}: {2}{3}",
verb, requestUrl, e.Message, e.StackTrace);
}
using (Stream respStream = resp.GetResponseStream())
using (StreamReader reader = new StreamReader(respStream))
respstring = reader.ReadToEnd();
}
}
}
catch (System.InvalidOperationException e)
catch (Exception e)
{
m_log.Debug(
string.Format(
"[FORMS]: InvalidOperationException on response from {0} {1} ", verb, requestUrl), e);
m_log.ErrorFormat("[FORMS]: Error receiving response from {0}: {1}. Request: {2}", requestUrl, e.Message,
obj.Length > WebUtil.MaxRequestDiagLength ? obj.Remove(WebUtil.MaxRequestDiagLength) : obj);
throw e;
}
}