Applying Trunk revision 7562 to the 0.6.0 stable branch

Added a Catch(InvalidOperationException) to BaseHttpServer.HandleRequest(). Which is thrown due to errors in the XML deserializing. Without this catch is it easy to bring down any of the opensim servers on purpose by just sending corrupt xml to them.
0.6.0-stable
MW 2008-12-01 11:28:41 +00:00
parent a2c55d7fdb
commit 4295c125aa
1 changed files with 5 additions and 0 deletions

View File

@ -470,6 +470,11 @@ namespace OpenSim.Framework.Servers
{
m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}", e);
}
catch (InvalidOperationException e)
{
m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}", e);
SendHTML500(response);
}
}
private bool TryGetStreamHandler(string handlerKey, out IRequestHandler streamHandler)