1.添加一个Rss View的Webpart
2.修改该Webpart的属性RSS Feed URL:输入你要订阅的外网RSS地址,如:http://p.moreover.com/page?o=rss002&c=Book%20publishing%20news
3.点击确定,但是出错了,RSS出不来,但是RSS地址在IE里面可以打开。
错误如下:
rss viewer, an unexpected error occured processing your request. check the logs for details and correct the problem.
修复方案:
1.安装Microsoft Firewall Client for ISA Server
2.配置Microsoft Firewall Client for ISA Server,在其中Settings里填入你们公司的ISA Server服务器全名。
3. 修改对应网站的Webconfig
在<configuration>节点下加入
<system.net>
<defaultProxy>
<proxy usesystemdefault="false" proxyaddress="http://ISAServerName" bypassonlocal="true" />
</defaultProxy>
</system.net>
注意:1.如果Webconfig中本来就有
<system.net>
<defaultProxy>
<proxy ...../>
</defaultProxy>
</system.net>
需要覆盖此节点。
2.如果所有网站都要这个访问这个外网的RSS,请修改C:/WINDOWS/Microsoft.Net/Framework/v2.0.50727/CONFIG下的Webconfig文件。
如果你英文比较好请参考:
http://blogs.msdn.com/adamhems/archive/2006/06/13/629761.aspx