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

@@ -113,12 +113,14 @@ namespace OpenSim.Grid.MessagingServer.Modules
// Send Request
try
{
XmlRpcRequest UserReq = new XmlRpcRequest("register_messageserver", SendParams);
XmlRpcResponse UserResp = (XmlRpcResponse)UserReq.Invoke(srv);
//XmlRpcResponse UserResp = UserReq.Send(srv, 16000);
XmlRpcRequest UserReq = new XmlRpcRequest("register_messageserver", SendParams);
////XmlRpcResponse UserResp = UserReq.Send(srv, 16000);
//// Process Response
//Hashtable GridRespData = (Hashtable)UserResp.Value;
Hashtable GridRespData = (Hashtable)UserReq.Invoke(srv);
// Process Response
Hashtable GridRespData = (Hashtable)UserResp.Value;
// if we got a response, we were successful
if (!GridRespData.ContainsKey("responsestring"))
success = false;