1
ServiceStack HttpUtilsを使用してサードパーティのREST APIに接続しています。 リクエストを行う際に、プロキシサーバーとプロキシポートをどのように渡しますか?ServiceStack HttpUtils + Proxy Server
おかげ rudrvij
ServiceStack HttpUtilsを使用してサードパーティのREST APIに接続しています。 リクエストを行う際に、プロキシサーバーとプロキシポートをどのように渡しますか?ServiceStack HttpUtils + Proxy Server
おかげ rudrvij
HTTP Utilsはそうあなたが例えば、Proxyを指定するには、同じ機能を使用することができます.NETのHttpWebRequest
オーバーラッパーです:
WebProxy proxyObject = new WebProxy("http://webproxy:80/");
GlobalProxySelection.Select = proxyObject;
:と
url.GetJsonFromUrl(requestFilter: req.Proxy = new WebProxy("http://webproxy:80/"));
またはconfigure it in Web.config:
<configuration>
<system.net>
<defaultProxy>
<proxy
usesystemdefault="true"
proxyaddress="http://192.168.1.10:3128"
bypassonlocal="true"
/>
<bypasslist
<add address="[a-z]+\.contoso\.com" />
</bypasslist>
</defaultProxy>
</system.net>
</configuration>
パーフェクト。お返事をありがとうございます。 – rudrvij