mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
it helps when both sides of the xml-rpc server agree on the method names
This commit is contained in:
@@ -584,7 +584,7 @@ namespace OpenSim.Region.Communications.OGS1
|
||||
|
||||
IList parameters = new ArrayList();
|
||||
parameters.Add(param);
|
||||
XmlRpcRequest req = new XmlRpcRequest("get_user_appearance", parameters);
|
||||
XmlRpcRequest req = new XmlRpcRequest("get_avatar_appearance", parameters);
|
||||
XmlRpcResponse resp = req.Send(m_parent.NetworkServersInfo.UserURL, 8000);
|
||||
Hashtable respData = (Hashtable) resp.Value;
|
||||
|
||||
@@ -608,7 +608,7 @@ namespace OpenSim.Region.Communications.OGS1
|
||||
|
||||
IList parameters = new ArrayList();
|
||||
parameters.Add(param);
|
||||
XmlRpcRequest req = new XmlRpcRequest("update_user_appearance", parameters);
|
||||
XmlRpcRequest req = new XmlRpcRequest("update_avatar_appearance", parameters);
|
||||
XmlRpcResponse resp = req.Send(m_parent.NetworkServersInfo.UserURL, 8000);
|
||||
Hashtable respData = (Hashtable) resp.Value;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user