mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 10:46:00 +08:00
update xmlrpc.dll with a send variant using httpclint and used it
This commit is contained in:
@@ -2202,7 +2202,7 @@ namespace OpenSim.Framework
|
||||
public static XmlRpcResponse SendXmlRpcCommand(string url, string methodName, object[] args)
|
||||
{
|
||||
XmlRpcRequest client = new(methodName, args);
|
||||
return client.Send(url, 6000);
|
||||
return client.Send(url, WebUtil.SharedHttpClientWithRedir, 6000);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -1691,7 +1691,7 @@ namespace OpenSim.Framework
|
||||
WebUtil.LogOutgoingDetail("SEND", reqnum, str);
|
||||
}
|
||||
|
||||
XmlRpcResponse Resp = Req.Send(url, 30000);
|
||||
XmlRpcResponse Resp = Req.Send(url, WebUtil.SharedHttpClientWithRedir, 30000);
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user