版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領
文檔簡介
1、<p> 外文標題:The Design and Implementation of a Network Management Platform for TMN</p><p> 外文作者:Dongjin Han*, Wen-Zhe Cui,</p><p> 文獻出處:International Conference on Computer Communications
2、and Networks,1998,516</p><p> 英文2131單詞, 14568字符,中文3577漢字。</p><p> 此文檔是外文翻譯成品,無需調(diào)整復雜的格式哦!下載之后直接可用,方便快捷!只需二十多元。</p><p> The Design and Implementation of a Network Management Platfo
3、rm for TMN</p><p> Dongjin Han*, Wen-Zhe Cui,Youngeun Park, Shinhyuk Kang and Sunshin An Computer Network Lab., Dept, of Electronic Eng., Korea University</p><p><b> Abstract</b>&l
4、t;/p><p> Network management systems which administer actual network resources are developed based on a software system called network management platforms. Network management platforms provide major function
5、s defined in TMN and interfaces to develop network management systems.Our research designs and implements a network management platform suitable to the TMN environment of today and tomorrow. This platform increases the e
6、fficiency in handling management information by completely separating Managed O</p><p> Introduction</p><p> The deployment of communication networks and distributed computing systems requir
7、es the use of open standards-based management systems. Telecommunication Management Network (TMN) provides the worldwide accepted ultimate framework for the unified management of all types of telecommunication service
8、s and underlying services in the future. TMN systems use object-oriented information modeling techniques and manager/agent concepts that underlie the Open Systems Interconnection (OSI) system managem</p><p>
9、 This paper deals with the design and implementation of a new network management platform for TMN. Our platform consists of two parts, namely, Management System Kernel(MSK) and Managed Object Generation Envi- ronment(M
10、OGE). MSK provides management systems with run-time environment including not only generic platform services but also additional new features. MOGE provides a management applications development environment including Gu
11、idelines for the Definitions of Management Objects(GDMO) compi</p><p> Dedicated Agent: A managed system can be requested from multiple managing systems at the same time. Our platform serves each managing
12、system with a respective Dedicated Agent, allowing requests from multiple managing systems to be performed in the managed system concurrently.</p><p> Internal Data Structure(IDS) and External Meta MIB(EMM
13、): Our platform completely separates class information from Managed Object(MO) implementation. The class information such as package and attribute group information is generated from GDMO scripts and stored in specific
14、files. The set of these specific files are named as External Meta MIB. When a managed system starts or the Dynamic Class Loading is invoked, Internal Data Structure is generated or updated in the managed system's pr
15、ocess by a</p><p> dual structured Management Information Tree(MIT): In our implementation, MIT consists of the complex structures of balanced Binary Search Trees(BSTs) and doubly linked lists. The balanced
16、 BSTs are used in searching a base MO, and the doubly linked lists in scoping operation respectively.</p><p> Class Level Filtering(CLF): In this paper, all instances in an MIT are classified by MO class i
17、nformation. Using this information, instances of improper classes may be excluded from being filtered though being selected by scoping.</p><p> Dynamic Class Loading: In conventional network management pl
18、atforms, if a new MO class is developed while a managed system process is running, the process has to be regenerated and restarted for the addition of newly-made MO class information to take effect, causing fatal emptin
19、ess. To overcome this defect, we provide the Dynamic Class Loading feature.</p><p> Overall architecture</p><p> Components</p><p> The platform consists of two parts, the MSK a
20、nd MOGE. Figure 1 depicts overall platform architecture and three kinds of operation flows: numeric, uppercase alphabet, and lowercase alphabet.</p><p> As depicted in Figure 1, the MSK is comprised of seve
21、n components. Agent Core is a main component of the platform and runs in the form of a thread. It is responsible for initializing a managed system, establishing an association with managing systems and performing Dynami
22、c Class Loading. Dedicated Agent is also a form of a thread and is created by the Agent Core following an association request from a managing system. Its role is to provide a specified managing system with management ser
23、vices. </p><p> Even though MOGE consists of several components, we will focus only on selected components for the con* centration on the subject of this paper. The ASN.l compiler produces C++ class typed
24、syntax from ASN.l definition of the syntax. The GDMO compiler produces MO codes and an EMM from GDMO scripts. The EMM is comprised of several files, which contain the information of MO classes. It is used to construct a
25、n IDS in initiating a managed system or performing the CLF. MO framework provides basic f</p><p> Three kinds of operation flows</p><p> In the paper, operation flows in the platform can be s
26、eparated into three kinds of major operation flows. One is concerned with initializing managed systems(l-6) in MSK, another with establishing an association and performing management operations including event notifica-
27、 tion(A-J) and the last with generating new MO classes in MOGE(a-g).</p><p> Initializing a managed system</p><p> When a managed systems starts, Agent Core creates Scheduler and Monitor threa
28、ds. Also, it constructs IDS from EMM(l). By invoking the creation functions of MO classes in the IDS, Agent Core creates initial MO instances(2). A user may want to specify the new MO instances or reload the saved data o
29、f MO instances from persistent devices as the initial MO instances. When an MO instance is created, user code in the MO may be invoked for satisfying the developer’s requirements. This code may be inten</p><p
30、> Implementation</p><p> Agent Core</p><p> The Agent Core is the main module of the platform and runs in the form of a thread. It plays the following roles as shown in Figure 2:</p>
31、<p> Constructs an IDS containing all information of MO classes from EMM.</p><p> Initializes the Scheduler and Monitor, which respectively supports timer service and interaction with real resource
32、</p><p> Establishes associations with managing systems.</p><p> Creates a Dedicated Agent to take charge of subsequent management operations from the managing system. Whenever an association
33、 request of another managing system arrives, the Agent Core repeats this step.</p><p> Dedicated Agent</p><p> The Dedicated Agent takes charge of management operations requested by a single m
34、anaging system. It also runs in the form of a thread and is created by the Agent Core. The Dedicated Agent plays the following roles(see Figure 3):</p><p> Provides a specified managing system with a manag
35、ement service. Multiple Dedicated Agents may</p><p> Management Information Tree</p><p> In a managed system, all MO instances are administered in an MIT based on containment relationship. Th
36、e containment relationship allows one MO instance to contain one or more other MO instances, and a containing MO instance can be contained in another MO instance. Each MO instance can be identified with a unique name ba
37、sed on the containment relationship. A management operation can be requested on one or more MO instances by a managing system specifying the scope and filter parameters in the m</p><p> Managed Object frame
38、work</p><p> The MO framework provides the feature of the basic function of the management operations and the hooks where developer can insert the user code to satisfy his requirements. The hooks are implem
39、ented through the virtual function. All the virtual functions are defined in Top class, which is the general MO class defined in X.721. The contents of instances of an MO class using conditional packageis) should be dec
40、ided dynamically in MO creation time. In other words, instances of same MO class may h</p><p> External Meta MIB</p><p> The EMM is used to initialize and update the IDS when an MO class need
41、s to be added into a management application. When a GDMO compiler compiles a GDMO script defined by a developer, the EMM files are generated with MO class codes. EMM includes two parts: one reflects the MO class definiti
42、on described in a GDMO script, and the other identifies the location and the name of shared libraries of MO classes.</p><p> GDMO compiler</p><p> The GDMO compiler is an essential component o
43、f management platform. The output of GDMO compiler includes MO class C++ codes and the EMM. The MO class codes are compiled into shared libraries by using C++ compiler, and the EMM is used to initialize and update the I
44、DS when the MO classes are added into a network management system.</p><p> management environments. Hence, Under the above test conditions, the response time of the GET operations in both of platforms is t
45、ested in the following three cases with variable filter:</p><p> No filter is specified</p><p> Filter is set with “testObjectlcT</p><p> Filter is set with “panzeeAttr<=10”&l
46、t;/p><p> 4Conclusion</p><p> In this paper, we have designed and implemented a network management platform, which supports not only the features defined in OSI management model, but also some ad
47、ditional ones. The managed system based on our platform is able to concurrently handle the requests from multiple managing systems. In addition this platform increases the efficiency in handling management information b
48、y completely separating Managed Object class information from instance information. Introducing new concepts, name</p><p> References</p><p> CCITT, "Systems Management Overview", C
49、CITT X.700 series recommendations, CCITT, 1992</p><p> CCITT, "Overview of TMN Recommendations", CCITT X.3000 series recommendations, CCITT, 1992</p><p> George Pavlou, “The OSIMIS P
50、latform: Making OSI Management Simple” in Proc. INM IV, pp. 480-493, 1995.</p><p> Uyless Black, “Network Management Standards", McGraw-Hill Series on Computer Communications, 1995</p><p>
51、 Morris Sloman, et al., "Network and Distributed Systems Management", Addison-Wesley Publishing Company, 1994</p><p> Iosif G. Ghetie, “Network and System Management Platform analysis and Evalua
52、tion”,Kluwer Academic Publishers, 1997</p><p> Charles J. Northrup, “Programming with UNIX Threads”, John Wiley & Sons, Inc., 1996</p><p> Salah Aidarous, Thomas Plevyak, "Telecommun
53、ications Network Management Technologies and Implementations”, IEEE Series on Network Management, 1997</p><p> TMN網(wǎng)絡管理平臺的設計與實現(xiàn)</p><p> Dongjin Han*, Wen-Zhe Cui,Youngeun Park, Shinhyuk Kang an
54、d Sunshin An Computer Network Lab., Dept, of Electronic Eng., Korea University</p><p><b> 摘要:</b></p><p> 管理著實際網(wǎng)絡資源的網(wǎng)絡管理系統(tǒng)的開發(fā)都是基于被稱之為網(wǎng)絡管理平臺的軟件系統(tǒng)。</p><p> 網(wǎng)絡管理平臺提供TMN中
55、定義的主要功能以及連接著去開發(fā)網(wǎng)絡管理系統(tǒng)。我們的研究設計并實現(xiàn)了既適合當今又適合未來TMN環(huán)境的網(wǎng)絡管理平臺。該平臺通過將實例信息中的Managed Object類信息實現(xiàn)完全分離,提高了處理管理信息的效率。此外,通過多結(jié)構(gòu)MIT和CMIS服務執(zhí)行的多階段布置,平臺的性能得到顯著改善。此外,我們的平臺允許在運行時將新的MIB添加到受管系統(tǒng),解決了重新編譯和重新啟動網(wǎng)絡管理系統(tǒng)的問題。在我們的研究中,我們提出了一個新的級別過濾的概念,隨
56、著MIT功能的擴大,其性能也相對較高。</p><p><b> 1.引言</b></p><p> 通信網(wǎng)絡和分布式計算系統(tǒng)的部署需要使用基于開放式標準的管理系統(tǒng)。通信管理網(wǎng)絡(TMN)為將來統(tǒng)一管理各種通信業(yè)務和基礎業(yè)務提供了全球公認的終極框架。 TMN系統(tǒng)使用面向?qū)ο蟮男畔⒔<夹g(shù)和基于開放系統(tǒng)互連(OSI)系統(tǒng)管理的管理人或代理人概念[1]。管理著實際網(wǎng)絡
57、資源的網(wǎng)絡管理系統(tǒng)的開發(fā)都是基于被稱之為網(wǎng)絡管理平臺的軟件系統(tǒng)。通常,網(wǎng)絡管理平臺同時提供運行時間和開發(fā)環(huán)境。運行時環(huán)境由通用管理服務來表現(xiàn),它反映了管理平臺的整體可操作性。開發(fā)環(huán)境為管理應用程序提供了方便性,并允許將這些應用程序集成到平臺服務中。網(wǎng)絡管理應用程序的性能依賴于網(wǎng)絡管理平臺本身的性能。在管理系統(tǒng)中執(zhí)行管理操作的過程中,所有執(zhí)行的代碼都由網(wǎng)絡管理平臺提供,用戶代碼除外。可以添加用戶代碼以滿足管理系統(tǒng)開發(fā)者的要求,例如,嫁接到
58、真實的資源。</p><p> 本文介紹了TMN新的網(wǎng)絡管理平臺的設計和實現(xiàn)。 我們的平臺由兩部分組成,即管理系統(tǒng)內(nèi)核(MSK)和管理對象生成環(huán)境(MOGE)。 MSK為管理系統(tǒng)提供運行時環(huán)境,不僅包括通用平臺服務,還包括其他新功能。 MOGE提供了一個管理應用程序開發(fā)環(huán)境,包括管理對象定義指南(GDMO)編譯器,ASN.I編譯器,針對掛鉤和配置特定數(shù)據(jù)存儲的用戶應用程序接口(API)。 我們的平臺支持OSI系
59、統(tǒng)管理和高效開發(fā)環(huán)境中定義的全部功能。 此外,它還提供了可增強性能和適應性的新功能。 附加功能是:</p><p> ?專用代理:可以同時從多個管理系統(tǒng)請求受管系統(tǒng)。 我們的平臺為每個管理系統(tǒng)提供相應的專用代理,允許來自多個管理系統(tǒng)的請求同時在管理系統(tǒng)中執(zhí)行。</p><p> ?內(nèi)部數(shù)據(jù)結(jié)構(gòu)(IDS)和外部元管理信息庫(EMM):我們的平臺將類信息與管理對象(MO)實現(xiàn)完全分開。 類
60、信息(如安裝包和屬性組信息)由GDMO腳本生成并存儲在特定文件中。 這些特定存儲信息的集合被命名為外部元管理信息庫。 當受管系統(tǒng)啟動或調(diào)用動態(tài)類加載時,通過分析和收集管理信息庫的信息,在受管系統(tǒng)的進程中生成或更新內(nèi)部數(shù)據(jù)結(jié)構(gòu)。</p><p> ?雙結(jié)構(gòu)管理信息樹(MIT):在我們的實現(xiàn)中,MIT由平衡二叉搜索樹(BST)和雙向鏈表組成的復雜結(jié)構(gòu)組成。 平衡BST分別用于搜索基本MO和雙向鏈表。</p&g
61、t;<p> ?CLF(分層過濾):在本文中,MIT中的所有實例都按MO類信息進行分類。 使用這些信息,不正確層級的實例可能被排除在篩選之外,盡管是通過范圍選擇來進行篩選。</p><p> 動態(tài)類加載:在傳統(tǒng)的網(wǎng)絡管理平臺中,如果在管理系統(tǒng)進程運行時開發(fā)新的MO類,則必須重新生成并重新啟動該進程以添加新生成的MO類信息才能生效,從而導致致命的空虛。 為了克服這個缺陷,我們提供了動態(tài)類加載功能。
62、</p><p><b> 2整體架構(gòu)</b></p><p><b> 組件</b></p><p> 該平臺由兩部分組成,即MSK和MOGE。 圖1描述了整體平臺架構(gòu)和三種操作流程:數(shù)字,大寫字母和小寫字母。</p><p> 如圖1所示,MSK由七個組件組成。 Agent Core是該
63、平臺的主要組件,并以線程的形式運行。它負責初始化受管系統(tǒng),建立與管理系統(tǒng)的關(guān)聯(lián)并執(zhí)行動態(tài)類加載。專用代理也是線程的一種形式,由Agent Core根據(jù)來自管理系統(tǒng)的關(guān)聯(lián)請求創(chuàng)建。它的作用是為管理系統(tǒng)提供管理服務。整個管理界面可用的全套MO實例在MIT中組織。當在管理系統(tǒng)中執(zhí)行操作時,所有的MO都通過MIT訪問[2]。在我們的研究中,我們設計和實施MIT是一個由平衡BST和雙向鏈表組成的復雜結(jié)構(gòu)。 IDS維護所有MO類別的信息。 Agen
64、t Core根據(jù)EMM的信息構(gòu)建IDS。每個類信息(如對象標識符,安裝包,名稱綁定和異形)均建立在其各自的稱為AA樹的平衡搜索樹中。管理信息庫(MIB)存儲作為除M-Create操作以外的所有管理操作的MO實例。調(diào)度程序為MO實例提供定時器服務。通過使用Scheduler API,可以在特定的時間或間隔內(nèi)調(diào)用MO實例中的相應功能。監(jiān)視器可以使MO信息從真實資源接收消息。通信基礎設施結(jié)構(gòu)(CIS)為管理應用程序提供通信服務。 CIS由關(guān)聯(lián)
65、控制服務元素(ACSE),ROSE(遠程操作服務元素),CM</p><p> 盡管MOGE由多個組件組成,但我們將只關(guān)注選定的組件以專注于本文的研究主題。 ASN.l編譯器根據(jù)秩序排列的ASN.l定義生成C ++類類型排列秩序。 GDMO編譯器通過GDMO腳本生成MO代碼和EMM。 EMM由幾個文件存儲組成,其中包含MO類的信息。 它用于在啟動受管系統(tǒng)或執(zhí)行CLF時構(gòu)建IDS。 MO框架為管理操作提供了MO的
66、基本功能,以及使托管系統(tǒng)在開發(fā)人員能夠插入用戶代碼以滿足其需求。</p><p><b> 三種運行流程</b></p><p> 本文將平臺的運行流程分為三種主要運行流程。 一個涉及MSK中的管理系統(tǒng)(I-6)的初始化,另一個涉及建立關(guān)聯(lián)并執(zhí)行包括事件通知(A-J)在內(nèi)的管理操作,另一個涉及在MOGE(a-g)中生成新的MO類。</p><p
67、><b> 初始化管理系統(tǒng)</b></p><p> 當管理系統(tǒng)啟動時,Agent Core將創(chuàng)建調(diào)度程序和監(jiān)視器線程。 另外,它從EMM構(gòu)建IDS(l)。 通過調(diào)用IDS中MO類的創(chuàng)建功能,Agent Core創(chuàng)建初始MO實例(2)。 用戶可能想要指定新的MO實例或從永久設備重新加載保存的MO實例數(shù)據(jù)作為初始MO實例。 當MO實例被創(chuàng)建時,MO中的用戶代碼可以被調(diào)用以滿足開發(fā)者的
68、要求。 此代碼可能旨在與真實資源進行交互(3)。 另外,用戶代碼可以向調(diào)度程序請求定時器服務,并將輸入端口注冊到監(jiān)視器以接收來自特定實際資源的消息(4)。 監(jiān)視器開始檢測信號(5)。 一旦所有上述任務完成,MO實例就在MIT進行了注冊(6)。</p><p><b> 3 實現(xiàn)</b></p><p><b> 以Agent為核心</b>&l
69、t;/p><p> Agent Core是平臺的主要模塊,并以線程的形式運行。 它起到以下的作用,如圖2所示:</p><p> ?構(gòu)建一個包含來自EMM的MO類的所有信息的IDS。</p><p> ?初始化調(diào)度器和監(jiān)視器,它們分別支持定時器服務和與實際資源的交互</p><p> ?建立與管理系統(tǒng)的關(guān)聯(lián)。</p><
70、;p> 創(chuàng)建專用代理,負責管理系統(tǒng)的后續(xù)管理操作。 無論何時到達另一個管理系統(tǒng)的關(guān)聯(lián)請求,Agent Core都會重復此步驟。</p><p><b> 專用代理</b></p><p> 專用代理負責一個管理系統(tǒng)所要求的管理操作。 它也以線程的形式運行并由Agent Core創(chuàng)建。 專用代理起到以下作用(見圖3):</p><p>
71、; 提供具有管理服務的指定管理系統(tǒng)。 多個專用代理可能</p><p><b> 管理信息樹</b></p><p> 在受管系統(tǒng)中,所有MO實例都是基于包含關(guān)系在MIT中進行管理的。 包含關(guān)系允許一個MO實例包含一個或多個其他MO實例,并且包含MO實例可以包含在另一個MO實例中。 每個MO實例可以根據(jù)包含關(guān)系使用唯一的名稱進行標識。 一個管理系統(tǒng)可以在一個或多
72、個MO實例上請求管理操作,指明管理操作原語[2]中的范圍和過濾器參數(shù)。</p><p><b> 托管對象框架</b></p><p> MO框架提供了管理操作基本功能的特征以及開發(fā)人員可以插入用戶代碼以滿足其要求的掛鉤。 鉤子是通過虛擬函數(shù)實現(xiàn)的。 所有的虛擬函數(shù)都是在Top類中定義的,這是在X.721中定義的一般MO類。 使用條件包的MO類實例的內(nèi)容應在MO創(chuàng)
73、建時間內(nèi)動態(tài)決定。 換句話說,相同MO類的實例可以分別具有不同的屬性和操作。 MO框架支持這一功能,為MO類提供了最大的靈活性。</p><p><b> 外部元信息管理庫</b></p><p> 當需要將MO類添加到管理應用程序時,EMM用于初始化和更新IDS。 當GDMO編譯器編譯由開發(fā)人員定義的GDMO腳本時,EMM文件將使用MO類代碼生成。 EMM包含兩
74、部分:一部分反映GDMO腳本中描述的MO類定義,另一部分標識MO類共享庫的位置和名稱。</p><p><b> GDMO編譯器</b></p><p> GDMO編譯器是管理平臺的重要組成部分。 GDMO編譯器的輸出包括MO類C ++代碼和EMM。 MO類代碼使用C ++編譯器編譯到共享庫中,當MO類添加到網(wǎng)絡管理系統(tǒng)中時,EMM用于初始化和更新IDS。<
75、/p><p> 管理環(huán)境。在上述測試條件下,在以下三種使用可變?yōu)V波器的情況下,測試兩種平臺中GET操作的響應時間:</p><p><b> ?沒有指定過濾器</b></p><p> ?過濾器設置為“testObjectlcT”</p><p> ?過濾器設置為“panzeeAttr <= 10”</p
76、><p><b> 4 結(jié)論</b></p><p> 在本文中,我們設計并實現(xiàn)了一個網(wǎng)絡管理平臺,它不僅支持OSI管理模型中定義的功能,還支持一些額外的功能。 基于我們平臺的受管系統(tǒng)能夠同時處理來自多個管理系統(tǒng)的請求。 另外,該平臺通過將實例信息中的MO類信息完全分離,提高了處理管理信息的效率。 引入新的概念,即分層過濾和動態(tài)類加載,可以提高網(wǎng)絡管理系統(tǒng)的性能和穩(wěn)定
77、性。 從性能評估中可以發(fā)現(xiàn),通過使用平臺的高級功能,網(wǎng)絡管理系統(tǒng)的整體性能得到顯著提高。 未來,我們計劃改進動態(tài)加載機制以實現(xiàn)更靈活的功能。 此外,還將提供更詳細的績效評估報告。</p><p><b> 參考文獻</b></p><p> CCITT, "Systems Management Overview", CCITT X.700 se
78、ries recommendations, CCITT, 1992</p><p> CCITT, "Overview of TMN Recommendations", CCITT X.3000 series recommendations, CCITT, 1992</p><p> George Pavlou, “The OSIMIS Platform: Maki
79、ng OSI Management Simple” in Proc. INM IV, pp. 480-493, 1995.</p><p> Uyless Black, “Network Management Standards", McGraw-Hill Series on Computer Communications, 1995</p><p> Morris Slom
80、an, et al., "Network and Distributed Systems Management", Addison-Wesley Publishing Company, 1994</p><p> Iosif G. Ghetie, “Network and System Management Platform analysis and Evaluation”,Kluwer
81、Academic Publishers, 1997</p><p> Charles J. Northrup, “Programming with UNIX Threads”, John Wiley & Sons, Inc., 1996</p><p> Salah Aidarous, Thomas Plevyak, "Telecommunications Netw
溫馨提示
- 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. 眾賞文庫僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 18計算機專業(yè)相關(guān)有關(guān)外文文獻翻譯成品高校大學宿舍管理系統(tǒng)研究
- 29計算機專業(yè)相關(guān)有關(guān)外文文獻翻譯成品c.c語言的自動類型轉(zhuǎn)換
- 06計算機專業(yè)相關(guān)有關(guān)外文文獻翻譯成品安卓andriod移動設備上醫(yī)療信息服務的實現(xiàn)
- 114計算機專業(yè)相關(guān)有關(guān)畢業(yè)設計外文文獻翻譯成品集成spring mvc框架
- 130計算機專業(yè)相關(guān)有關(guān)畢業(yè)設計外文文獻翻譯成品介紹java web開發(fā)
- 02計算機專業(yè)相關(guān)有關(guān)外文文獻翻譯成品c編程語言在增強故障檢測方面的擴展
- 108計算機專業(yè)相關(guān)有關(guān)外文文獻翻譯成品從信息門戶到數(shù)字圖書館管理系統(tǒng)案例分析
- 116計算機專業(yè)相關(guān)有關(guān)畢業(yè)設計外文文獻翻譯成品安裝和配置mysql (最新)
- 94計算機專業(yè)相關(guān)有關(guān)外文文獻翻譯成品分析java ee應用程序中的程序依賴性
- 26計算機專業(yè)相關(guān)有關(guān)外文文獻翻譯成品基于消費者行為建模的網(wǎng)頁內(nèi)容推薦系統(tǒng)
- 117計算機專業(yè)相關(guān)有關(guān)畢業(yè)設計外文文獻翻譯成品 對java及其歷史的介紹(最新)
- 137市場營銷策略專業(yè)相關(guān)有關(guān)外文文獻翻譯成品營銷策略研究(最新2019)
- 126有關(guān)計算機專業(yè)相關(guān)畢業(yè)設計外文文獻翻譯成品對delphi的概述
- 112計算機專業(yè)相關(guān)有關(guān)外文文獻翻譯成品基于android安卓操作系統(tǒng)的增強現(xiàn)實應用程序開發(fā)
- 134計算機專業(yè)相關(guān)有關(guān)外文文獻翻譯成品為移動學習環(huán)境設計安全的考試管理系統(tǒng)(sems) 4萬字符
- 128計算機專業(yè)相關(guān)有關(guān)畢業(yè)設計外文文獻翻譯成品web網(wǎng)站開發(fā)方法 4萬字符
- 109計算機專業(yè)安卓系統(tǒng)應用相關(guān)有關(guān)外文文獻翻譯成品了解安卓android應用程序編程和安全性_動態(tài)研究
- 88計算機專業(yè)應用程序app設計相關(guān)有關(guān)外文文獻翻譯成品智能手機上的即時消息(im)應用程序(app)的表征
- 【中英雙語】190關(guān)于計算機專業(yè)會議管理系統(tǒng)有關(guān)的外文文獻翻譯成品:基于rfid的會議管理系統(tǒng)的設計與實現(xiàn)(對照)
- 【中英雙語】118有關(guān)計算機專業(yè)相關(guān)畢業(yè)設計外文文獻翻譯成品:對 asp.net core的介紹(最新)
評論
0/150
提交評論