update xmlrpc.dll with a send variant using httpclint and used it

This commit is contained in:
UbitUmarov
2023-05-24 13:42:56 +01:00
parent 2bd08a19d5
commit 5e0c6446d8
10 changed files with 13 additions and 14 deletions

View File

@@ -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>

View File

@@ -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
{