2007年12月17日 星期一

the web site could not be configured... vsenterprisehelper.axd

當使用 Visual Studio 來測試 asp.net 的效能時,有時會出現 "The web site could not be configured correctly; getting ASP.NET process information failed. Requesting 'http://localhost/SimpleTestWebsite/VSEnterpriseHelper.axd' returned an error: The information returned is invalid. " 的訊息。

此狀況出現於 forms authentication。

解法:加入下面的宣告於 web.config

<location path="VSEnterpriseHelper.axd"> <system.web> <authorization> <allow users="?" /> </authorization> </system.web> </location>

2007年12月12日 星期三

網路品質問題

這次,可以說是第一次遇到網路的品質不佳。 但是,只是隔壁電腦而已。 情況是這樣。 Web 伺服器連線到 SQL Server,一直會出現 timeout 的問題。但如果Web 改用我notebook 的xp 開發環境則沒有問題。 直覺就是Web Server 的網路環境有狀況。但要如何證明呢? ping dbServer 都沒問題。但 tracert dbServer 就容易出現timeout。 今天,找到一個更好的指令:pathping dbServer。這個指令會測試每個經過的 router 並進行統計,計算資料遺失的比例。 結果此比例將近 10%。 救命啊!雖然找到問題了,但仍不知道如何解決。 可能是網卡的問題吧!再去買一張網卡來試試看。

2007年12月5日 星期三

Vista 的 Virtual Store

當應用程式不當的將資料寫到 c:\program files\[app]\ 時,Vista 會「貼心」的將這些資料改寫到 C:\Users\[account]\AppData\Local\VirtualStore\Program Files\[app]\ 下,而且該程式跑起來如正常一般。 只是要找到這些檔案會花一些功夫了

Share with Facebook