replace a couple of xmlrpc invocations with invoke() instead of send()
this is in order to force an exception on an error - send() does not do this and people end up simply ignoring the error codes...0.6.8-post-fixes
parent
52fd82ae5d
commit
be3360db67
|
@ -114,7 +114,8 @@ namespace OpenSim.Grid.MessagingServer.Modules
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
XmlRpcRequest UserReq = new XmlRpcRequest("register_messageserver", SendParams);
|
XmlRpcRequest UserReq = new XmlRpcRequest("register_messageserver", SendParams);
|
||||||
XmlRpcResponse UserResp = UserReq.Send(srv, 16000);
|
XmlRpcResponse UserResp = (XmlRpcResponse)UserReq.Invoke(srv);
|
||||||
|
//XmlRpcResponse UserResp = UserReq.Send(srv, 16000);
|
||||||
|
|
||||||
// Process Response
|
// Process Response
|
||||||
Hashtable GridRespData = (Hashtable)UserResp.Value;
|
Hashtable GridRespData = (Hashtable)UserResp.Value;
|
||||||
|
|
|
@ -270,7 +270,8 @@ namespace OpenSim.Grid.MessagingServer.Modules
|
||||||
IList parameters = new ArrayList();
|
IList parameters = new ArrayList();
|
||||||
parameters.Add(param);
|
parameters.Add(param);
|
||||||
XmlRpcRequest req = new XmlRpcRequest("get_user_friend_list", parameters);
|
XmlRpcRequest req = new XmlRpcRequest("get_user_friend_list", parameters);
|
||||||
XmlRpcResponse resp = req.Send(m_cfg.UserServerURL, 3000);
|
XmlRpcResponse resp = (XmlRpcResponse)req.Invoke(m_cfg.UserServerURL);
|
||||||
|
//XmlRpcResponse resp = req.Send(m_cfg.UserServerURL, 3000);
|
||||||
Hashtable respData = (Hashtable)resp.Value;
|
Hashtable respData = (Hashtable)resp.Value;
|
||||||
|
|
||||||
if (respData.Contains("avcount"))
|
if (respData.Contains("avcount"))
|
||||||
|
|
Loading…
Reference in New Issue