app.config 中的 IM 代理设置

发布于 2024-07-29 19:19:31 字数 215 浏览 7 评论 0原文

我正在使用 .NET 中的 XMPP(带有 agsXMPP.dll 库)为 google talk 编写一个聊天应用程序。 在我的办公室,聊天应用程序登录失败,因为有特定的 IM 代理。 如何显式指定代理详细信息。 可以在app.config中完成吗?

我的 gtalk 设置适用于 gtalk: 主持人:improxy 端口:8085 代理需要身份验证:false

I'm writing a chat application for google talk using XMPP in .NET (with agsXMPP.dll library). The chat application's login fails in my office because there is a specific proxy for IM. How to explicitly specify the proxy details. Can it be done in app.config?

My gtalk settings which works fine for gtalk:
Host:improxy
Port:8085
Proxy requires authentication:false

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↙厌世 2024-08-05 19:19:31

这将使用系统默认代理

    <system.net>
      <defaultProxy>
        <proxy usesystemdefault="true" />
      </defaultProxy>
    </system.net>

,您指定的代理

<system.net>
  <defaultProxy enabled="true">
   <proxy bypassonlocal="true"
          proxyaddress="http://proxy.domain.org:8888/" />
  </defaultProxy>
 </system.net>

请参见 此处这里

This will use system default proxy

    <system.net>
      <defaultProxy>
        <proxy usesystemdefault="true" />
      </defaultProxy>
    </system.net>

and this your specify

<system.net>
  <defaultProxy enabled="true">
   <proxy bypassonlocal="true"
          proxyaddress="http://proxy.domain.org:8888/" />
  </defaultProxy>
 </system.net>

see here and here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文