标签: c# .net chat instant-messaging
我正在使用.NET中的XMPP(使用agsXMPP.dll库)编写谷歌聊天聊天应用程序。聊天应用程序的登录在我的办公室失败,因为有一个特定的IM代理。如何显式指定代理详细信息。可以在app.config中完成吗?
我的gtalk设置适用于gtalk: 主持人:improxy 端口:8085 代理需要身份验证:false
答案 0 :(得分:1)
这将使用系统默认代理
<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>
请参阅here和here