Fix casting problems where I assumed return value was still a XmlRpcResponse rather than the value HashTable

This commit is contained in:
justincc
2009-12-15 15:10:29 +00:00
parent be3360db67
commit 6f2961f0e2
2 changed files with 11 additions and 8 deletions

View File

@@ -269,10 +269,11 @@ namespace OpenSim.Grid.MessagingServer.Modules
IList parameters = new ArrayList();
parameters.Add(param);
XmlRpcRequest req = new XmlRpcRequest("get_user_friend_list", parameters);
XmlRpcResponse resp = (XmlRpcResponse)req.Invoke(m_cfg.UserServerURL);
XmlRpcRequest req = new XmlRpcRequest("get_user_friend_list", parameters);
//XmlRpcResponse resp = req.Send(m_cfg.UserServerURL, 3000);
Hashtable respData = (Hashtable)resp.Value;
//Hashtable respData = (Hashtable)resp.Value;
Hashtable respData = (Hashtable)req.Invoke(m_cfg.UserServerURL);
if (respData.Contains("avcount"))
{