畢業(yè)論文外文翻譯-ASP體系結(jié)構(gòu)的發(fā)展_第1頁
畢業(yè)論文外文翻譯-ASP體系結(jié)構(gòu)的發(fā)展_第2頁
畢業(yè)論文外文翻譯-ASP體系結(jié)構(gòu)的發(fā)展_第3頁
畢業(yè)論文外文翻譯-ASP體系結(jié)構(gòu)的發(fā)展_第4頁
畢業(yè)論文外文翻譯-ASP體系結(jié)構(gòu)的發(fā)展_第5頁
已閱讀5頁,還剩18頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、淮陰工學院畢業(yè)設計(論文)外文資料翻譯學院:計算機工程學院專業(yè):通信工程姓 名:學 號:外文出處: professional asp.net web services(用外文寫) russ basiura, mike batongbacal附 件:1外文資料翻譯譯文;2外文原文。指導教師評語:簽名:(手寫簽名)2012年2 月18日注:請將該封面與附件裝訂成冊。附件1:外文資料翻譯譯文asp體系結(jié)構(gòu)的發(fā)展利用asp開發(fā)web應用程序首先必須確立web應用的體系結(jié)構(gòu)。目前在應用 中常用到的有兩種:c/s體系結(jié)構(gòu)和b/s體系結(jié)構(gòu)。c/s體系結(jié)構(gòu)即client/server,客戶端/服務器端。兩層的

2、客戶/服務器結(jié)構(gòu)??蛻?服務器(client/server)模型是一種良好的軟件體系結(jié)構(gòu),是網(wǎng)絡的最佳 應用模式之一。從技術(shù)上看,它本身是一個邏輯概念,是指將一個應用分解成多個 任務分別執(zhí)行,共同完成整個應用任務的功能。網(wǎng)絡各站點主機上資源(硬件、軟 件、數(shù)據(jù))分步不均衡,在客戶/服務器結(jié)構(gòu)下,無資源的客戶機通過向有資源的服 務器發(fā)出請求,并得到資源請求,從而適應網(wǎng)絡中資源分布的不均衡性。采用這種 結(jié)構(gòu)能綜合各種計算機協(xié)同工作,各盡其能,實現(xiàn)對計算機系統(tǒng)的規(guī)模優(yōu)化(rightsizing)和規(guī)模縮小化(downsizing)如下圖:從技術(shù)角度講,“客戶機”和“服務器”都是邏輯的概念,其含義是:

3、將計算 機網(wǎng)絡應用分成兩大部分,其中一部分支持多個用戶共享的功能與資源,它由服務 器來實現(xiàn);另一部分是面向每個用戶的,由客戶機來實現(xiàn),也就是說,客戶機通常 執(zhí)行前臺功能,通過用戶界面實現(xiàn)人機對話,或是執(zhí)行用戶特定的應用程序。而服 務器通常執(zhí)行后臺功能,管理共享的外設,接受并回答用戶的請求等。對于一臺計 算機來說,它可以具有雙重功能,在某一時刻充當服務器,而在另一時刻又成為客 戶機??蛻?服務器類型把計算機分為兩類,提供服務的一方稱為服務器,請求服務的 一方稱為客戶。為了能夠提供服務,服務器一方必須具有一定的碩件和相應的服務 器軟件;同樣,客戶一方也必須具有一定的硬件和相應的客戶軟件。在服務器和

4、客戶z間必須有一個協(xié)議,雙方根據(jù)這個協(xié)議進行通信。將客戶/服務器模型應用于internet服務,客戶與服務器之間的關(guān)系并不是一成 不變的。有的internet節(jié)點一方面提供服務,另一方面也從別的節(jié)點處獲得服務; 甚至在一次對話過程中,雙方的角色也可能互換。如在進行文件伎輸時,如果把提 供文件的一方稱為服務器,把獲取文件的一方稱為客戶,則在使用get或mget命 令從另一個節(jié)點取文件時,可以認為自己使用的及其是客戶機,在使用put或mput 命令向另一個節(jié)點發(fā)送文件時又可以認為自己使用的機器是服務器。多層的客戶/服務器結(jié)構(gòu)隨著企業(yè)應用的擴展,最近又出現(xiàn)了一種新的多層體系結(jié)構(gòu),它把客戶端應用 分為

5、兩部分:客戶應用和服務器應用。客戶應用是原來客戶應用的一部分,另一部 分被移入服務器應用中。新的客戶應用負責用戶界面和簡單固定的業(yè)務邏輯,新的 服務器應用駐留核心的、易變的業(yè)務邏輯。因此其結(jié)構(gòu)就變成了新的(client應用 +server應用)/server結(jié)構(gòu)。如下圖所示:請求應答o亠這種結(jié)構(gòu)解決了傳統(tǒng)client/server的可擴展問題,既減少了客戶端業(yè)務邏輯, 又降低了客戶端對硬件的要求。同時,由于把許多業(yè)務邏輯集中到了單一的應用服 務器上,應用系統(tǒng)的維護工作也被集中到了一起,消除了傳統(tǒng)client/server結(jié)構(gòu)中 軟件分發(fā)的問題。這種結(jié)構(gòu)即被稱為b/s體系結(jié)構(gòu)。b/s體系結(jié)構(gòu)即b

6、rowser/server,瀏覽器/服務器端。本質(zhì)上,browser/server也 是一種client/server結(jié)構(gòu),它是一種由傳統(tǒng)的二層client/server結(jié)構(gòu)發(fā)展而來的三 層client/server結(jié)構(gòu)在web上應用的特例。在browser/server的系統(tǒng)中,用戶可以通過瀏覽器向分布在網(wǎng)絡上的許多服務 器發(fā)岀請求。browser/server結(jié)構(gòu)極大的簡化了客戶機的工作,客戶機上只需安裝、 配置少量的客戶端軟件即可,服務器將擔負更多的工作,對數(shù)據(jù)庫的訪問和應用 程序的執(zhí)行將在服務器上完成。在browser/server三層體系結(jié)構(gòu)下,表示層(presentatioon)功

7、能層(business logic)數(shù)據(jù)層(data service)被割成三個相對獨立的單元:第一層表示層:web瀏覽器。在表示層中包含系統(tǒng)的顯示邏輯,位于客戶端。它的任務是由web瀏覽器向網(wǎng) 絡上的某一 web服務器提出服務請求,web服務器對用戶身份進行驗證后用http 協(xié)議把所需的主頁傳送給客戶端,客戶機接受傳來的主頁文件,并把它顯示在web 瀏覽器上。第二層 功能層:具有應用程序擴展功能的web服務器。在功能層中包含系統(tǒng)的事務處理邏輯,位于web服務器端。它的任務是接受用 戶的請求,首先需要執(zhí)行相應的擴展應用程序與數(shù)據(jù)庫進行連接,通過sql等方式 向數(shù)據(jù)庫服務器提出數(shù)據(jù)處理申請,而后

8、等數(shù)據(jù)庫服務器將數(shù)據(jù)處理的結(jié)果提交給 web服務器,再由web服務器傳送回客戶端。第三層 數(shù)據(jù)層:數(shù)據(jù)庫服務器。在數(shù)據(jù)層中包含系統(tǒng)的數(shù)據(jù)處理邏輯,位于數(shù)據(jù)庫服務器端。它的任務是接受 web服務器對數(shù)據(jù)庫操縱的請求,實現(xiàn)對數(shù)據(jù)庫查詢、修改、更新等功能,把運行 結(jié)果提交給web服務器。仔細分析不難看出,三層的browser/server體系結(jié)構(gòu)是把二層client/server結(jié) 構(gòu)的事務處理邏輯模塊從客戶機的任務中分離岀來,由單獨組成的一層來負擔其任 務,這樣客戶機的壓力大大減輕了,把負荷均衡地分配給了 web服務器,于是由原 來的兩層的client/server結(jié)構(gòu)轉(zhuǎn)變成三層的browser/

9、server結(jié)構(gòu)。這種三層體系結(jié) 構(gòu)如下圖所示。這種結(jié)構(gòu)不僅把客戶機從沉重的負擔和不斷對其提高的性能的要求中解放出 來,也把技術(shù)維護人員從繁重的維護升級工作中解脫岀來。由于客戶機把事務處理 邏輯部分分給了功能服務器,使客戶機一下子“苗條” 了許多,不再負責處理復雜 計算和數(shù)據(jù)訪問等關(guān)鍵事務,只負責顯示部分,所以維護人員不再為程序的維護工 作奔波于每個客戶機之間,而把主要精力放在功能服務器上程序的更新工作。這種 三層結(jié)構(gòu)層與層之間相互獨立,任何一層的改變不影響其它層的功能。它從根木上 改變了傳統(tǒng)的二層client/server體系結(jié)構(gòu)的缺陷,它是應用系統(tǒng)體系結(jié)構(gòu)中一次深 刻的變革。兩種體系結(jié)構(gòu)的

10、對比:browser/server體系結(jié)構(gòu)與client/server體系結(jié)構(gòu)相比不僅具有client/server體 系結(jié)構(gòu)的全部優(yōu)點,而且乂有clinet/server體系結(jié)構(gòu)所不具備的獨特優(yōu)勢:開放的標準:client/server所采用的標準只要在內(nèi)部統(tǒng)一就可,它的應用往往 是專用的。browser/server所采用的標準都是開放的、非專用的,是經(jīng)過標準化組 織所確定的而非單一廠商所制定,保證了其應用的通用性和跨平臺性。較低的開發(fā)和維護成本:client/server的應用必須開發(fā)出專用的客戶端軟件, 無論是安裝、配置還是升級都需要在所有的客戶機上實施,極大地浪費了人力和物 力。br

11、owser/server的應用只需在客戶端裝有通用的瀏覽器即可,維護和升級工作 都在服務器端進行,不需對客戶端進行任何改變,故而大大降低了開發(fā)和維護的成 本。使用簡單,界面友好:client/server用戶的界面是由客戶端軟件所決定的,其 使用的方法和界面各不相同,每推廣一個client/server系統(tǒng)都要求用戶從頭學起, 難以使用。browser/server用戶的界面都統(tǒng)一在瀏覽器上,瀏覽器易于使用、界面 友好,不須再學習使用其它的軟件,一勞永逸的解決了用戶的使用問題。客戶端消腫:client/server的客戶端具有顯示與處理數(shù)據(jù)的功能,對客戶端的 要求很高,是一個“胖”客戶機。br

12、owser/server的客戶端不再負責數(shù)據(jù)庫的存取 和復雜數(shù)據(jù)計算的等任務,只需要其進行顯示,充分發(fā)揮了服務器的強大作用,這 樣就大大的降低了對客戶端的要求,客戶端變得菲?!笆荨?。系統(tǒng)靈活:client/server系統(tǒng)的三部分模塊中有一部分需改變就要關(guān)聯(lián)到其它 模塊的變動,使系統(tǒng)極難升級。browser/server系統(tǒng)的三部分模塊各自相對獨立, 其中一部分模塊改變吋其它模塊不受影響,系統(tǒng)改進變得非常容易,且可以用不同 廠家的產(chǎn)品來組成性能更佳的系統(tǒng)。保障系統(tǒng)的安全性:在client/server系統(tǒng)中由于客戶機直接與數(shù)據(jù)庫服務器進 行連接,用戶可以很輕易的改變服務器上的數(shù)據(jù),無法保證系統(tǒng)

13、的安全性。 browser/server系統(tǒng)在客戶機與數(shù)據(jù)庫服務器z間増加了一層web服務器,使兩者 不再直接相連,客戶機無法直接對數(shù)據(jù)庫操縱,有效地防止用戶的非法入侵。三層的browser/server體系結(jié)構(gòu)具有許多傳統(tǒng)client/server體系結(jié)構(gòu)不具備的 優(yōu)點,而且又緊密的結(jié)合了 internet/ingnet技術(shù),是技術(shù)發(fā)展的大勢所趨,它把應 用系統(tǒng)帶入了一個嶄新的發(fā)展時代。由此我們選擇b/s架構(gòu)作為系統(tǒng)開發(fā)的體系結(jié) 構(gòu)。什么是c/s和b/s:要想對“c/s”和“b/s”技術(shù)發(fā)展變化有所了解,首先必須搞清楚三個問題。(1) 什么是c/s結(jié)構(gòu)。c/s (client/server)

14、結(jié)構(gòu),即大家熟知的客戶機和服務器結(jié)構(gòu)。它是軟件系統(tǒng)體 系結(jié)構(gòu),通過它可以充分利用兩端硬件環(huán)境的優(yōu)勢,將任務合理分配到client端和 server端來實現(xiàn),降低了系統(tǒng)的通訊開銷。目前大多數(shù)應用軟件系統(tǒng)都是 client/server形式的兩層結(jié)構(gòu),由于現(xiàn)在的軟件應用系統(tǒng)正在向分布式的web應用 發(fā)展,web和client/server應用都可以進行同樣的業(yè)務處理,應用不同的模塊共享 邏輯組件;因此,內(nèi)部的和外部的用戶都可以訪問新的和現(xiàn)有的應用系統(tǒng),通過現(xiàn) 有應用系統(tǒng)屮的邏輯可以擴展出新的應用系統(tǒng)。這也就是目前應用系統(tǒng)的發(fā)展方向。傳統(tǒng)的c/s體系結(jié)構(gòu)雖然采用的是開放模式,但這只是系統(tǒng)開發(fā)一級的開

15、放性, 在特定的應用中無論是client端還是server端都還需要特定的軟件支持。由于沒能 提供用戶真正期望的開放環(huán)境,c/s結(jié)構(gòu)的軟件需要針對不同的操作系統(tǒng)系統(tǒng)開發(fā) 不同版本的軟件,加之產(chǎn)品的更新?lián)Q代十分快,已經(jīng)很難適應百臺電腦以上局域 網(wǎng)用戶同時使用。而且代價高,效率低。如我院使用的上海超蘭公司“案件統(tǒng)計” 管理軟件就是典型的c/s體系結(jié)構(gòu)管理軟件。(2) 什么是b/s結(jié)構(gòu)。b/s(browser/server)結(jié)構(gòu)即瀏覽器和服務器結(jié)構(gòu)。它是隨著internet技術(shù)的興起, 對c/s結(jié)構(gòu)的一種變化或者改進的結(jié)構(gòu)。在這種結(jié)構(gòu)下,用戶工作界而是通過www 瀏覽器來實現(xiàn),極少部分事務邏輯在前端

16、(browser)實現(xiàn),但是主要事務邏輯在服務 器端(server)實現(xiàn),形成所謂三層3-tier結(jié)構(gòu)。這樣就大大簡化了客戶端電腦載荷, 減輕了系統(tǒng)維護與升級的成本和工作量,降低了用戶的總體成木(tco)。以目前的 技術(shù)看,局域網(wǎng)建立b/s結(jié)構(gòu)的網(wǎng)絡應用,并通過internet/intranet模式下數(shù)據(jù)庫應 用,相對易于把握、成本也是較低的。它是一次性到位的開發(fā),能實現(xiàn)不同的人員, 從不同的地點,以不同的接入方式(比如lan, wan, internet/intranet等)訪問和操作 共同的數(shù)據(jù)庫;它能有效地保護數(shù)據(jù)平臺和管理訪問權(quán)限,服務器數(shù)據(jù)庫也很安全。 目前我院內(nèi)網(wǎng)(intranet

17、).外(internet)和北京東方清大公司“案件、辦公管理軟件” 就是b/s結(jié)構(gòu)管理軟件,干警在局域網(wǎng)各工作站通過www瀏覽器就能實現(xiàn)工作 業(yè)務。特別是在java這樣的跨平臺語言出現(xiàn)z后,b/s架構(gòu)管理軟件更是方便、 快捷、高效。(3) 管理軟件主流技術(shù)。管理軟件技術(shù)的主流技術(shù)與管理思想一樣,也經(jīng)歷了三個發(fā)展時期。首先,界 面技術(shù)從上世紀dos字符界面到windows圖形界面(或圖形用戶界面gui),直至 browser瀏覽器界而三個不同的發(fā)展時期。其次,今天所有電腦的瀏覽器界面,不 僅直觀和易于使用,更主要的是基于瀏覽器平臺的任何應用軟件其風格都是一樣的, 使用人對操作培訓的要求不高,而且

18、軟件可操作性強,易于識別;再者,平臺體系 結(jié)構(gòu)也從過去單用戶發(fā)展到今天的文件/服務器(f/s)體系、客戶機/服務器(c/s)體系 和瀏覽器/服務器(b/s)體系c/s和b/s之比較:c/s和b/s是當今世界開發(fā)模式技術(shù)架構(gòu)的兩大主流技術(shù)。c/s是美國borland 公司最早研發(fā),b/s是美國微軟公司研發(fā)。目前,這兩項技術(shù)以被世界各國所掌握, 國內(nèi)公司以c/s和b/s技術(shù)開發(fā)出產(chǎn)晶也很多。這兩種技術(shù)都有自己一定的市場份 額和客戶群,各家企業(yè)都說自己的管理軟件架構(gòu)技術(shù)功能強大、先進、方便,都能 舉出各自的客戶群體,都有一大群文人墨客為自己搖旗吶喊,廣告滿天飛,可謂仁 者見仁,智者見智c/s架構(gòu)軟件

19、的優(yōu)勢與劣勢(1) 應用服務器運行數(shù)據(jù)負荷較輕。最簡單的c/s體系結(jié)構(gòu)的數(shù)據(jù)庫應用由兩部分組成,即客戶應用程序和數(shù)據(jù)庫 服務器程序。二者可分別稱為前臺程序與后臺程序。運行數(shù)據(jù)庫服務器程序的機器, 也稱為應用服務器。一旦服務器程序被啟動,就隨時等待響應客戶程序發(fā)來的請求; 客戶應用程序運行在用戶自己的電腦上,對應于數(shù)據(jù)庫服務器,可稱為客戶電腦, 當需要對數(shù)據(jù)庫中的數(shù)據(jù)進行任何操作時,客戶程序就自動地尋找服務器程序,并 向其發(fā)岀請求,服務器程序根據(jù)預定的規(guī)則作出應答,送回結(jié)果,應用服務器運行 數(shù)據(jù)負荷較輕。(2) 數(shù)據(jù)的儲存管理功能較為透明。在數(shù)據(jù)庫應用中,數(shù)據(jù)的儲存管理功能,是由服務器程序和客戶

20、應用程序分別 獨立進行的,前臺應用可以違反的規(guī)則,并且通常把那些不同的(不管是己知還是未 知的)運行數(shù)據(jù),在服務器程序中不集中實現(xiàn),例如訪問者的權(quán)限,編號可以重復、 必須有客戶才能建立定單這樣的規(guī)則。所有這些,對于工作在前臺程序上的最終用 戶,是“透明”的,他們無須過問(通常也無法干涉)背后的過程,就可以完成自己 的一切工作。在客戶服務器架構(gòu)的應用中,前臺程序不是非常“瘦小”,麻煩的事 情都交給了服務器和網(wǎng)絡。在c/s體系的下,數(shù)據(jù)庫不能真正成為公共、專業(yè)化的 倉庫,它受到獨立的專門管理。(3) c/s架構(gòu)的劣勢是高昂的維護成本且投資大。首先,采用c/s架構(gòu),要選擇適當?shù)臄?shù)據(jù)庫平臺來實現(xiàn)數(shù)據(jù)庫

21、數(shù)據(jù)的真正“統(tǒng) 一”,使分布于兩地的數(shù)據(jù)同步完全交由數(shù)據(jù)庫系統(tǒng)去管理,但邏輯上兩地的操作 者要直接訪問同一個數(shù)據(jù)庫才能有效實現(xiàn),有這樣一些問題,如果需要建立“實時” 的數(shù)據(jù)同步,就必須在兩地間建立實時的通訊連接,保持兩地的數(shù)據(jù)庫服務器在線 運行,網(wǎng)絡管理工作人員既要對服務器維護管理,又要對客戶端維護和管理,這需 要高昂的投資和復雜的技術(shù)支持,維護成本很高,維護任務量大。其次,傳統(tǒng)的c/s結(jié)構(gòu)的軟件需要針對不同的操作系統(tǒng)系統(tǒng)開發(fā)不同版本的軟 件,由于產(chǎn)品的更新?lián)Q代十分快,代價高和低效率已經(jīng)不適應工作需要。在java 這樣的跨平臺語言岀現(xiàn)之后,b/s架構(gòu)更是猛烈沖擊c/s,并對其形成威脅和挑戰(zhàn)。b

22、/s架構(gòu)軟件的優(yōu)勢與劣勢(1) 維護和升級方式簡單。目前,軟件系統(tǒng)的改進和升級越來越頻繁,b/s架構(gòu)的產(chǎn)品明顯體現(xiàn)著更為方 便的特性。對一個稍微大一點單位來說,系統(tǒng)管理人員如果需要在幾百甚至上千部 電腦之間來回奔跑,效率和工作量是可想而知的,但b/s架構(gòu)的軟件只需要管理服 務器就行了,所有的客戶端只是瀏覽器,根本不需要做任何的維護。無論用戶的規(guī) 模有多大,有多少分支機構(gòu)都不會增加任何維護升級的工作量,所有的操作只需要 針對服務器進行;如果是異地,只需要把服務器連接專網(wǎng)即可,實現(xiàn)遠程維護、升 級和共享。所以客戶機越來越“瘦”,而服務器越來越“胖”是將來信息化發(fā)展的 主流方向。少后,軟件升級和維護

23、會越來越容易,而使用起來會越來越簡單,這對 用戶人力、物力、時間、費用的節(jié)省是顯而易見的,驚人的。因此,維護和升級革 命的方式是“瘦”客戶機,“胖”服務器。(2) 成本降低,選擇更多。大家都知道windows在桌面電腦上幾乎一統(tǒng)天下,瀏覽器成為了標準配置,但 在服務器操作系統(tǒng)上windows并不是處于絕對的統(tǒng)治地位?,F(xiàn)在的趨勢是凡使用 b/s架構(gòu)的應用管理軟件,只需安裝在linux服務器上即可,而且安全性高。所以 服務器操作系統(tǒng)的選擇是很多的,不管選用那種操作系統(tǒng)都可以讓大部分人使用 windows作為桌面操作系統(tǒng)電腦不受影響,這就使的最流行免費的linux操作系統(tǒng) 快速發(fā)展起來,linux除

24、了操作系統(tǒng)是免費的以外,連數(shù)據(jù)庫也是免費的,這種選 擇菲常盛行。比如說很多人每天上“新浪”網(wǎng),只要安裝了瀏覽器就可以了,并不需要了解 “新浪”的服務器用的是什么操作系統(tǒng),而事實上大部分網(wǎng)站確實沒有使用windows 操作系統(tǒng),但用戶的電腦本身安裝的大部分是windows操作系統(tǒng)。(3) 應用服務器運行數(shù)據(jù)負荷較重。由于b/s架構(gòu)管理軟件只安裝在服務器端(sewer)上,網(wǎng)絡管理人員只需要管理 服務器就行了,用戶界面主要事務邏輯在服務器(server)端完全通過www瀏覽器 實現(xiàn),極少部分事務邏輯在前端(browser)實現(xiàn),所有的客戶端只有瀏覽器,網(wǎng)絡管 理人員只需要做硬件維護。但是,應用服務

25、器運行數(shù)據(jù)負荷較重,一旦發(fā)生服務器 “崩潰”等問題,后果不堪設想。因此,許多單位都備有數(shù)據(jù)庫存儲服務器,以防 萬一。附件2:外文原文(復印件)the development of asp system structuredevelop web application program using asp the architecture that must first establish web application. now in application frequently with to have two: the architecture of c/s and the architec

26、ture of b/s.client/server and customer end / server hold the architecture of c/s.the customer / server structure of two floor.customer / server ( client/server ) model is a kind of good software architecture, it is the one of best application pattern of network. from technology, see that it is a log

27、ic concept, denote will a application many tasks of decomposing difference carry out, common completion is entire to apply the function of task. on each network main computer of web site, resource ( hardware, software and data ) divide into step, is not balanced, under customer / server structure, w

28、ithout the client computer of resource through sending request to the server that has resource , get resource request, so meet the resource distribution in network not balancedness- with this kind of structure, can synthesize various computers to cooperate with work, let it each can, realize the sca

29、le for the system of computer optimization ( rightsizing ) with scale reduce to melt (downsizing ). picture is as follows:客戶it is most of to divide into computer network application into two, in which the resource and function that part supports many users to share,it is realized by server; another

30、part faces every user , is realized by client computer, also namely, client computer is usual to carry out proscenium function , realizes man-machine interaction through user interface , or is the application program of specific conducted user. and server usually carries out the function of backstag

31、e supporter , manages the outside request concerning seting up, accepting and replying user that shared. for a computer, it can have double function , is being certain and momentary to carve to act as server , and again becomes client computer in another time.customer / server type computer divide i

32、nto two kinds, one side who offers service is called as server , asks one side of service to be called as customer. to be able to offer service, server one side must have certain hardware and corresponding server software; also, customer one side must also have certain hardware and corresponding cus

33、tomer software.there must be a agreement between server and customer, both sides communicate according to this agreement.apply customer / server model in internet service , the relation between customer and server is not immutable. some internet node offers service on the one hand , also gets servic

34、e on the other hand from other node; it is even in one time dialogue course, mutual role also exchanges probably. as in cany out file transmission , if be called as one side who offers file server, is called as one side who gets file customer, when using get or mget order since another node takes fi

35、le, can think that what self use and it is client computer , is using put or mput order to another node dispatch file can again think the machine that used self is server.multilayer customer / server structurealong with the development of enterprise application, recently, have again arisen a kind of

36、 new multilayer architecture, it applies customer end to divide into two minutes: customer application and server apply. customer application is the part of original customer application , is another and partial to have been transferee! to server to apply. new customer application takes the responsi

37、bility for user interface and simple regular business logic and new server application resident core , changeable business logic. therefore its structure has become new ( client application + server application )/server structure. following picture shows:<c>請求<a>客戶師請求應答this kind of struc

38、ture has solved traditional client/server can expand problem, have reduced customer end business logic , and have reduced the requirement of customer end for hardware. at the same time because of a lot of business logic concentrations have gone to unitary application server on, the maintenance work

39、of application system had been also concentrated together, have eliminated the problem in the traditional structure of client/server that software distributes. this kind of structure is called as the architecture of b/s.browser/server and browser / server hold the architecture of b/s. on essence, br

40、owser/server is also a kind of structure of client/server, it is a kind of from the traditional two levels of structural development of client/server come to the three-layer structural special case of client/server that applied on web.in the system of browser/server user can pass through browser to

41、a lot of servers that spread on network to send request. the structure of browser/server is maximum to have simplified the work of client computer, on client computer, need to install and deploy few customer end software only,server will bear more work, for database visit and apply program carry out

42、 will in server finish.under the three-layer architecture of browser/server, express layer(presentatioon ),function layer ( business logic ), data layer ( data service ) have been cut the unit of 3 relative independences:it is the first layer of to express layer: web browser.in expressing layer cont

43、ain system show logic, locate in customer end. its task is to suggest by web browser to the certain a web server on network that service is asked , after verifying for user identity, web server delivers needed homepage with http agreement to customer end, client computer accept the homepage file tha

44、t passed,and show it in web browser on.second layer function layer: have the web server of the application function of program extension.in function layer contain the systematic handling of general affairs logic, locate in web server end. its task is the request concerning accepting user、need to be

45、first conducted and corresponding to expand application program and database to carry out connection , passes through the waies such as sql to database server to put forward data handling to apply for, then etc. database server the result of handling data submit to web server, deliver again by web s

46、erver to return customer end.the number of plies of 3th according to layer: database serverin data layer contain systematic data handling logic, locate in database server end. its task is to accept the request that web server controls for database, realization is inquired and modified for database ,

47、 update etc. function, submit operation result to web server.careful analysis is been easy to see , the architecture of browser/server of three-layer is the handling of general affairs of the two levels of structure of client/server logic modular from the task of client computer in split, from the f

48、irst floor of individual composition bear the pressure of its task and such client computer have alleviated greatly, distribute load balancedly and have given web server, so from the structural change of client/server of original two floor the structure of browser/server of three-layer. this kind of

49、 three-layer architecture following picture shows.this kind of structure not only client computer from heavy burden and the requirement of performance that rises continuously for it in liberation come out, also defend technology people from heavy maintenance upgrading work in free oneself. since cli

50、ent computer handles general affairs , logic partial minutes have given function server, make client computer right offh slender m a lot of, do not take the responsibility for handling complex calculation and data again visit etc. crucial general affairs, is responsible to show part, so, maintenance

51、 people do not rush about again for the maintenance work of program between every client computer, and put major energy in the program on function server update work. between this kind of three-layer structural layer and layer, the mutually independent change of any first floor does not affect the f

52、unction of other layer. it has changed the defect of the two levels of architecture of client/server of tradition from foundation, it is the transform with deep once in application systematic architecture.the contrast of two architecturesthe architecture of browser/server and the architecture of cli

53、ent/server compare with all advantages that not only have the architecture of client/server and also have the architecture of clinet/server the unique advantage that place does not have:open standard: the standard adopted by client/server only in department unification for but, its application is of

54、ten for special purpose.it is lower to develop and defend cost: it need to be implemented on all client computers that the application of client/server must develop the customer end software for special purpose, no matter installation and disposition escalate still, have wasted manpower and material

55、 resources maximumly. the application of browser/server need in customer end have general browser,defend and escalate to work in server end go on , need not carry out any change as customer holds , have reduced the cost of development and maintenance so greatly.it is simple to use , interface friend

56、ly: the interface of the user of client/server is decided by customer end software, interface and the method of its use are not identical each, per popularize a system of client/server ask user study from the beginning, is hard to use. the interface of the user of browser/server is unified on browse

57、r, browser is easy to use , interface friendly, must not study use again other software, the use of a lao yong yi that has solved user problem.customer end detumescence: the customer end of client/server has the function that shows and handles data , as the requirement of customer end is a client co

58、mputer h it is fath very high. the customer of browser/server holds the access that not takes the responsibility for database again and the etc. task of complex data calculation, need it only show,the powerful role that has played server fully is so large to have reduced the requirement for customer

59、 end, customer end become very h thinsystem is flexible: the 3 minutes of the system of client/server, in modular, have the part that need to change to want relation to the change of other modular, make system very difficult upgrading. the 3 minutes of the system of browser/server modular relative independence, in which a part of modular change, other modular

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論