try disabling keep-alive on every xml rpc handler in the user server

This commit is contained in:
justincc
2009-12-16 16:52:38 +00:00
parent ec6017c92b
commit 136476aaf3
7 changed files with 25 additions and 25 deletions

View File

@@ -69,7 +69,7 @@ namespace OpenSim.Grid.UserServer.Modules
m_httpServer = httpServer;
m_httpServer.AddStreamHandler(new RestStreamHandler("GET", "/get_grid_info",
m_gridInfoService.RestGetGridInfoMethod));
m_httpServer.AddXmlRPCHandler("get_grid_info", m_gridInfoService.XmlRpcGridInfoMethod);
m_httpServer.AddXmlRPCHandler("get_grid_info", m_gridInfoService.XmlRpcGridInfoMethod, false);
}
public void Close()