明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

.NET客戶端應用程序:.NET應用程序更新組件(1)

[摘要]作者:Jamie CoolMicrosoft Corporation3/4/02 翻譯:李嘉 北京.東方瑞道 2004-6-1譯者小記:智能升級、自動更新,這是我們以前開發(fā)Windows應用程序時經(jīng)常碰到而且必須注意的問題。在.NET應用程序更新組件沒有出現(xiàn)之前這個問題曾經(jīng)令人...
作者:Jamie Cool

Microsoft Corporation

3/4/02

翻譯:李嘉
北京.東方瑞道
2004-6-1


譯者小記:智能升級、自動更新,這是我們以前開發(fā)Windows應用程序時經(jīng)常碰到而且必須注意的問題。在.NET應用程序更新組件沒有出現(xiàn)之前這個問題曾經(jīng)令人非常頭疼(除非你就不打算進行升級:))。誰又不希望自己開發(fā)的應用程序象Windows XP自身或Microsoft Money那樣具備自動更新的功能呢?使用.NET應用程序更新組件將會使這一切變得非常簡單。在微軟的DevDay2004上曹老師曾演示過的智能客戶端IssueVision的一個非常重要的亮點就是智能升級,自動更新。其中就采用的是.NET應用程序更新組件。本組文章將通過實例來討論一種生成可自動更新自身的.NET客戶端應用程序的方法。

I recently received a mail from the Microsoft IT team notifying me that they had detected several applications on my desktop computer that did not have the latest patches installed and instructed me to install the latest updates. I’ll be the first to admit that I don’t update the applications I run as much as I should; either on my home machine or on my work machines. It usually takes a problem like a broken feature in an application or an email (or sometimes several) from the IT department, to get me to install updates. Unfortunately I’m more of the rule than the exception when it comes to users updating their applications.

我最近收到一封來自微軟IT團隊的郵件提醒我他們已經(jīng)探測到我的桌面計算機上的一些應用程序沒有安裝最新的補丁,并建議我安裝這些最新的補丁。我將是第一個承認我并不是手動運行應用程序更新盡管我可以這樣做。不管是在我的家用計算機還是我的工作機器上。讓我去安裝更新,就象應用程序中的中斷特征或來自IT部門的一封(或有時是多封)郵件一樣通常會帶來問題。遺憾的是,相比那些來更新他們的應用程序的用戶我更遵守規(guī)則。



This requirement of needing a user or admin to manually install an update is why rolling out client updates has traditionally been such a huge problem and expense. One solution is to move the responsibility of updating the application from the user to the application itself. Instead of the user obtaining and installing a software update, the client application itself is responsible for downloading and installing updates from a well known server. The only user interaction necessary is whether or not they want to install the new updates now or later. You can see this type of approach to updating applications in action today with products like Windows XP and Microsoft Money.

這種需要用戶或管理員手動安裝更新的需求就是輪詢客戶端更新的原因,一直以來這也成為一個很大的問題并且代價昂貴。一個解決方案是將更新的職責從用戶那邊轉(zhuǎn)移到應用程序自身。取代用戶獲取并安裝一個軟件的更新,客戶端應用程序自身負責從一個已知服務器下載并安裝更新。用戶唯一需要進行干預的是決定是否愿意現(xiàn)在或以后安裝新的更新。你現(xiàn)在可以看到象這類更新應用程序的方法的實際產(chǎn)品,比如Windows XP和Microsoft Money。



In this article we will talk about an approach to building .NET client applications that are able to automatically update themselves.

在這篇文章中我們將討論一種生成可自動更新自身的.NET客戶端應用程序的方法。



(未完待續(xù))