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