Make the new style stuff compatible with the older revision

avinationmerge
Melanie 2011-01-28 04:31:21 +01:00
parent 3bce53b6e6
commit d91ee131b9
1 changed files with 14 additions and 1 deletions

View File

@ -223,7 +223,20 @@ namespace OpenSim.Services.Connectors.Simulation
try
{
OSDMap result = WebUtil.ServiceOSDRequest(uri, request, "QUERYACCESS", 10000);
return result["Success"].AsBoolean();
bool success = result["Success"].AsBoolean();
if (!success)
{
if (result.ContainsKey("Message"))
{
string message = result["Message"].AsString();
if (message == "Service request failed: [MethodNotAllowed] MethodNotAllowed") // Old style region
{
m_log.Info("[REMOTE SIMULATION CONNECTOR]: The above web util error was caused by a TP to a sim that doesn't support QUERYACCESS and can be ignored");
return true;
}
}
}
return success;
}
catch (Exception e)
{