WO2007121630A1 - A method and client terminal of creating two network management systems - Google Patents

A method and client terminal of creating two network management systems Download PDF

Info

Publication number
WO2007121630A1
WO2007121630A1 PCT/CN2006/003387 CN2006003387W WO2007121630A1 WO 2007121630 A1 WO2007121630 A1 WO 2007121630A1 CN 2006003387 W CN2006003387 W CN 2006003387W WO 2007121630 A1 WO2007121630 A1 WO 2007121630A1
Authority
WO
WIPO (PCT)
Prior art keywords
component
file
generating
network management
client
Prior art date
Application number
PCT/CN2006/003387
Other languages
French (fr)
Chinese (zh)
Inventor
Tong Sun
Original Assignee
Huawei Technologies Co., Ltd.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Huawei Technologies Co., Ltd. filed Critical Huawei Technologies Co., Ltd.
Publication of WO2007121630A1 publication Critical patent/WO2007121630A1/en

Links

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L41/00Arrangements for maintenance, administration or management of data switching networks, e.g. of packet switching networks
    • H04L41/02Standardisation; Integration
    • H04L41/0246Exchanging or transporting network management information using the Internet; Embedding network management web servers in network elements; Web-services-based protocols
    • H04L41/0266Exchanging or transporting network management information using the Internet; Embedding network management web servers in network elements; Web-services-based protocols using meta-data, objects or commands for formatting management information, e.g. using eXtensible markup language [XML]

Definitions

  • the present invention relates to network management technologies in the field of electronic communication technologies, and in particular, to a method and a client for generating two sets of network management systems. Background technique
  • the operation and maintenance of the telecommunication system requires the management and maintenance of the network management system in different locations and on different platforms. Due to the difference between hardware and software, the network management and maintenance system should be able to provide a response management method in both desktop and web (browser) environments.
  • desktop environment and web environment browser client B/S (browser/server, browser) / server)
  • B/S and C/S applications are implemented by two independent technologies.
  • This independent form not only allows users to purchase two sets of application systems at the same time, but also increases the cost; and there must be two development teams.
  • the development of these two application systems separately resulted in higher development costs, lower efficiency, longer product development time, and increased maintenance costs due to the existence of two sets of codes. Summary of the invention
  • the object of the present invention is to provide a method and a client for generating two sets of network management systems, which not only have rich components and scalability, but also are convenient for maintenance and upgrade in the later stage.
  • the technical solution adopted by the present invention provides a method for generating two sets of network management systems, which specifically includes the following steps:
  • Step 100 Create an extended markup language XML file, where the file includes a page description part and a logical reference associated therewith;
  • Step 200 Parse corresponding component information in the memory according to content in the file, and parse out a relationship between the component and a logical processing corresponding thereto;
  • Step 300 Generate two sets of systems respectively applied to the desktop client and the browser client according to the relationship between the component and the corresponding logical processing.
  • the present invention further provides a client, including a production module, a parsing module, and a reorganization module, wherein: the production module creates an extended markup language XML file, where the file includes a page description portion and a logical reference associated therewith;
  • the parsing module parses out the corresponding component information in the memory according to the content in the file created by the production module, and parses out the relationship between the component and the corresponding logical processing and outputs the relationship to the recombination module;
  • the relationship between the component and its corresponding logical processing generates two systems that are applied to the desktop client and the browser client, respectively.
  • the invention can generate two sets of network management systems based on the described set of codes.
  • the interface presentation layer is customized by the description language, and the corresponding control layer code is written, and the desktop application is dynamically generated through the configuration file and the conversion binding mechanism.
  • the application system of web application greatly reducing the development workload and maintenance difficulty.
  • the page description part in the technical solution of the present invention adopts an XML description manner, the specific representation of the page representation and the related logic is separated from each other.
  • the XML page description file may be modified. Re-generate the new system, realize the dynamic definition and dynamic change of the system. When making some changes, avoid re-encoding the system, which is beneficial to the system upgrade and maintenance. Due to the flexibility of the conversion mechanism, the richness and scalability of the components are enhanced.
  • FIG. 1 is a schematic flow chart of a specific embodiment of the present invention.
  • FIG. 2 is a block diagram of a client in one embodiment of the present invention. detailed description
  • the invention provides a method for generating two sets of network management systems, and realizes a set of codes to generate two sets of network management systems: B/S and C/S.
  • the process of generating two sets of network management systems is as shown in FIG. 1 , and the specific implementation steps are as follows:
  • the XML file includes the page description part and the logical references associated with it, that is, the content in the XML file is mainly the page representation, and the relationship between the logical implementation and the page performance.
  • the page description XML file defines the layout of the page, including components such as buttons, trees, tables, menus, etc., and the processing logic method names corresponding to the components;
  • the XML parsing engine parses out the corresponding component information in the memory according to the content of the page representation, and parses out the relationship between the object and the business processing action (that is, the relationship between the component and its corresponding processing);
  • this step can be implemented by an XML parsing engine.
  • the application system in the corresponding environment can be generated according to the relationship between the components obtained by the XML parsing engine and the corresponding logical processing:
  • the system performs the logical processing corresponding to the component. In fact, the action is executed by running a processing program corresponding to the processing logic method name.
  • this step can be implemented by the code reorganization engine.
  • the page description part definition is generally converted to a page component, and the logical processing corresponding to the page component is added to the page component's listener.
  • the SWT component provided by the SWT (Standard Widget Toolkit) component library.
  • SWT Standard Widget Toolkit
  • you can create a packaged Action API Application Program Interface
  • This action API is based on the C/S common component package. After you create this action API, you can directly call it.
  • the main features of the invention are: 1) The page is defined by the method described. 2) Two sets of application systems in different application environments can be generated through parsing and transformation. The implementation process is based on the MVC (View Controller Model) architecture idea, separating the page description from the component control. The conversion mechanism is used to convert the same set of page representations and logical actions to generate applications in different environments.
  • MVC View Controller Model
  • MVC is a software design method pattern. View, defines the interface to be used by the client; Controller, controls page flow, forwards, commits, redirects, etc.; Model, completes business logic or data persistence.
  • the main purpose of MVC is to separate the presentation layer, the logic layer, and the model 3, reduce the coupling degree of the system, and improve the maintainability and robustness of the system.
  • the client When the client has business processing requirements, the user can perform some operations on the browser side of the page.
  • the client listens to the operation of the page, accepts the event triggered by the operation component, and performs the business processing action defined by the page component, which cannot be completed on the client.
  • the service processes the action
  • the client sends a service processing request to the server, and the server accepts the request and directs all requests to the central controller.
  • the central controller is responsible for directing the request to the appropriate processing flow.
  • the processing result After the corresponding process (such as: reading data and other operations) is processed, the processing result is transmitted to the client, and the client outputs the processing result to the relevant page.
  • the page-based customization method based on the description language makes the interface generation more flexible. With MVC, the loose coupling of views and business logic is effectively realized, making it easier to create and maintain the system.
  • the client in one embodiment of the present invention, as shown in FIG. 2, includes a production module 101, a parsing module 102, and a reassembly module 103, where:
  • the authoring module 101 creates an extended markup language XML file that includes a page description portion and a logical reference associated therewith;
  • the parsing module 102 parses out the corresponding component information in the memory according to the content in the file created by the production module 101, and parses out the relationship between the component and the corresponding logical processing output to the recombining module 103;
  • the reorganization module 103 generates two sets of systems respectively applied to the desktop client and the browser client according to the relationship between the component and its corresponding logical processing.
  • the parsing module 102 can be an XML parsing engine
  • the reorganization module 103 can be a code reorganization engine.
  • the invention customizes the interface presentation layer by describing the language, and writes the corresponding control layer code, and develops a set of API (application program interface), dynamically generates the desktop application and the web application through the configuration file and the conversion binding mechanism.
  • API application program interface
  • the page description part of the method adopts the ML description mode, the representation and action of the page are separated from each other.
  • the new system can be regenerated by modifying the XML page description file to implement the system.
  • Dynamic definition dynamic changes, avoiding re-encoding the system, which is beneficial to system upgrade and maintenance. Due to the flexibility of the conversion mechanism, the richness and scalability of the components are enhanced.

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Information Transfer Between Computers (AREA)
  • Computer And Data Communications (AREA)

Abstract

A method and a client terminal of creating two network management systems are disclosed. In the present technical schemes, eXtention Markup Language XML file is made, the file including page description part and associated logic citation thereof; corresponding component information, and the relation between components and corresponding logic processes thereof are parsed according to the content in the file; two systems respectively applied to desktop client terminal and browser client terminal are created according to the relation between components and corresponding logic processes thereof. The present technical schemes customize interface present layer with description language and dynamically creates two application system such as desktop application and web application by configuration file and conversion binding mechanism, thereby greatly reducing develop workload and maintenance difficulty.

Description

一种生成两套网管系统的方法和客户端  Method and client for generating two sets of network management systems
技术领域 Technical field
本发明涉及电子通信技术领域的网管技术, 尤其涉及一种生成两套网管 系统的方法和客户端。 背景技术  The present invention relates to network management technologies in the field of electronic communication technologies, and in particular, to a method and a client for generating two sets of network management systems. Background technique
电信系统的运行维护, 需要在不同的地点、 不同的平台上都可以利用网 管系统进行管理和维护工作。 由于软硬件的差别, 要求网管运营维护系统在 桌面和 web (浏览器)环境下都应该能提供响应的管理方式。以往的开发过程, 由于技术的局限性,要求开发人员针对不同的应用环境:桌面环境和 web环境, 实现两套不同技术开发的应用系统: 浏览器客户端的 B/S(browser/server,浏览 器 /服务器)网管系统和桌面客户端的 C/S(client/server, 客户端 /服务器)网管系 统。  The operation and maintenance of the telecommunication system requires the management and maintenance of the network management system in different locations and on different platforms. Due to the difference between hardware and software, the network management and maintenance system should be able to provide a response management method in both desktop and web (browser) environments. In the past development process, due to technical limitations, developers were required to implement two sets of application systems developed by different technologies for different application environments: desktop environment and web environment: browser client B/S (browser/server, browser) / server) C/S (client/server, client/server) network management system for the network management system and desktop client.
一般情况下, B/S、 C/S应用是由两套独立的技术实现的, 这种独立的形 式, 不仅使得用户要同时购买两套应用系统, 增加了成本; 而且必须有两个 开发团队分别开发这两套应用系统, 导致产品的开发成本较大, 效率较低, 产品开发时间较长, 并且, 由于两套代码的存在也增加了后期的维护费用。 发明内容  In general, B/S and C/S applications are implemented by two independent technologies. This independent form not only allows users to purchase two sets of application systems at the same time, but also increases the cost; and there must be two development teams. The development of these two application systems separately resulted in higher development costs, lower efficiency, longer product development time, and increased maintenance costs due to the existence of two sets of codes. Summary of the invention
本发明的目的是提供一种生成两套网管系统的方法和客户端, 不仅组件 的丰富性和可扩展性较好, 而且后期的维护和升级都艮方便。  The object of the present invention is to provide a method and a client for generating two sets of network management systems, which not only have rich components and scalability, but also are convenient for maintenance and upgrade in the later stage.
本发明所釆用的技术方案: 提供一种生成两套网管系统的方法, 具体包 括以下步骤:  The technical solution adopted by the present invention provides a method for generating two sets of network management systems, which specifically includes the following steps:
步骤 100, 制作扩展标识语言 XML文件, 所述文件中包括页面描述部分及 与其相关联的逻辑引用;  Step 100: Create an extended markup language XML file, where the file includes a page description part and a logical reference associated therewith;
步骤 200, 根据所述文件中的内容解析出内存中的对应组件信息, 并解析 出组件和与其对应的逻辑处理的关系; 步骤 300, 根据所述组件和与其对应的逻辑处理的关系, 生成分别应用于 桌面客户端和浏览器客户端的两套系统。 Step 200: Parse corresponding component information in the memory according to content in the file, and parse out a relationship between the component and a logical processing corresponding thereto; Step 300: Generate two sets of systems respectively applied to the desktop client and the browser client according to the relationship between the component and the corresponding logical processing.
本发明还提供一种客户端, 包括制作模块、 解析模块和重組模块, 其中: 所述制作模块制作扩展标识语言 XML文件, 所述文件中包括页面描述部 分及与其相关联的逻辑引用;  The present invention further provides a client, including a production module, a parsing module, and a reorganization module, wherein: the production module creates an extended markup language XML file, where the file includes a page description portion and a logical reference associated therewith;
解析模块根据所述制作模块制作的文件中的内容解析出内存中的对应组 件信息, 并解析出组件和与其对应的逻辑处理的关系输出给所述重组模块; 所述重组模块才艮据所述组件和与其对应的逻辑处理的关系, 生成分别应 用于桌面客户端和浏览器客户端的两套系统。  The parsing module parses out the corresponding component information in the memory according to the content in the file created by the production module, and parses out the relationship between the component and the corresponding logical processing and outputs the relationship to the recombination module; The relationship between the component and its corresponding logical processing generates two systems that are applied to the desktop client and the browser client, respectively.
与现有技术相比, 本发明所带来的有益效果:  Compared with the prior art, the beneficial effects of the invention are as follows:
本发明可以基于描述的一套代码生成两套网管系统, 在实现时, 通过描 述语言对界面表现层进行定制、 并编写对应的控制层代码, 通过配置文件和 转换绑定机制, 动态生成桌面应用和 web应用两种应用系统, 大大降低了开发 工作量和维护难度。  The invention can generate two sets of network management systems based on the described set of codes. During implementation, the interface presentation layer is customized by the description language, and the corresponding control layer code is written, and the desktop application is dynamically generated through the configuration file and the conversion binding mechanism. And the application system of web application, greatly reducing the development workload and maintenance difficulty.
由于本发明技术方案中的页面描述部分是采取 XML的描述方式,将页面 的表示和相关的逻辑的具体实现相互分离, 当需要简单的版本升级或系统需 求变化时, 可以通过修改 XML页面描述文件重新生成新的系统, 实现系统的 动态定义、 动态变化, 在进行某些改动时, 避免重新对系统进行编码, 有益 于系统的升级、 维护。 由于转换机制的灵活性, 增强了组件的丰富性和可扩 展性。 附图说明  Since the page description part in the technical solution of the present invention adopts an XML description manner, the specific representation of the page representation and the related logic is separated from each other. When a simple version upgrade or system requirement change is required, the XML page description file may be modified. Re-generate the new system, realize the dynamic definition and dynamic change of the system. When making some changes, avoid re-encoding the system, which is beneficial to the system upgrade and maintenance. Due to the flexibility of the conversion mechanism, the richness and scalability of the components are enhanced. DRAWINGS
图 1为本发明一种具体实施方式的流程示意图;  1 is a schematic flow chart of a specific embodiment of the present invention;
图 2为本发明的一个实施例中的客户端的框图。 具体实施方式  2 is a block diagram of a client in one embodiment of the present invention. detailed description
本发明提供了一种生成两套网管系统的方法, 实现一种一套代码可生成 B/S和 C/S两套网管系统。 本发明的一个实施例中, 生成两套网管系统的流程如图 1所示, 具体实现 步骤如下: The invention provides a method for generating two sets of network management systems, and realizes a set of codes to generate two sets of network management systems: B/S and C/S. In one embodiment of the present invention, the process of generating two sets of network management systems is as shown in FIG. 1 , and the specific implementation steps are as follows:
1、 制作 XML ( extensible Markup Language, 扩展标识语言)文件, 页面 由 XML文件进行定义。 XML文件中包括页面描述部分及与其相关联的逻辑引 用, 即 XML文件中的内容主要为页面表现, 以及逻辑实现与页面表现之间的 关联关系。 具体来讲, 页面描述 XML文件定义页面的布局, 包括的组件, 如 按钮、 树、 表、 菜单等, 以及组件对应的处理逻辑方法名;  1. Create an XML (extensible markup language) file, and the page is defined by an XML file. The XML file includes the page description part and the logical references associated with it, that is, the content in the XML file is mainly the page representation, and the relationship between the logical implementation and the page performance. Specifically, the page description XML file defines the layout of the page, including components such as buttons, trees, tables, menus, etc., and the processing logic method names corresponding to the components;
2、 解析 ML页面描述文件中的内容。 XML解析引擎根据页面表现的内 容解析出内存中的对应组件信息, 并解析出对象与业务处理动作之间的关联 关系 (也就是組件和与其对应的 辑处理的关系) ;  2. Parse the contents of the ML page description file. The XML parsing engine parses out the corresponding component information in the memory according to the content of the page representation, and parses out the relationship between the object and the business processing action (that is, the relationship between the component and its corresponding processing);
在具体实现时, 可以由 XML解析引擎来实现本步骤。  In the specific implementation, this step can be implemented by an XML parsing engine.
3、在不同的运行环境下, 可以根据 XML解析引擎得到的组件和与其对应 的逻辑处理的关系, 生成相应环境下的应用系统: 应用于桌面客户端 (C/S ) 系统的系统和应用于浏览器客户端(B/S )的系统。 通过反射等方式生成界面 组件对象, 并将业务处理逻辑与页面组件绑定。 当用户操作组件时, 系统执 行与组件对应的逻辑处理, 实际上执行该动作便是运行一段与处理逻辑方法 名对应的处理程序。  3. In different operating environments, the application system in the corresponding environment can be generated according to the relationship between the components obtained by the XML parsing engine and the corresponding logical processing: The system applied to the desktop client (C/S) system and the application Browser client (B/S) system. Generate interface component objects by reflection, etc., and bind business process logic to page components. When the user operates the component, the system performs the logical processing corresponding to the component. In fact, the action is executed by running a processing program corresponding to the processing logic method name.
在具体实现时, 可以由代码重组引擎来实现本步驟。  In the specific implementation, this step can be implemented by the code reorganization engine.
对于 C/S应用系统, 一般是将页面描述部分定义转换为页面组件, 并且将 与页面组件对应的逻辑处理添加到页面组件的监听器中。 对于页面组件可以 直接调用 SWT ( Standard Widget Toolkit,标准构件工具包)组件库提供的 SWT 組件。 对于复杂的页面组件, 可以制作一套封装好的动作 API ( Application Program Interface, 应用程序接口) , 这个动作 API是基于 C/S的常用组件的封 装, 制作好这个动作 API后, 就可以直接调用里面的组件。  For C/S applications, the page description part definition is generally converted to a page component, and the logical processing corresponding to the page component is added to the page component's listener. For the page component, you can directly call the SWT component provided by the SWT (Standard Widget Toolkit) component library. For complex page components, you can create a packaged Action API (Application Program Interface). This action API is based on the C/S common component package. After you create this action API, you can directly call it. The components inside.
对于 B/S应用系统, 将页面描述部分转换为 HTML ( Hypertext Markup Language, 超文本标识语言)文件(通过附加的 CSS ( Cascading Style Sheets, 层叠样式表)、 SL ( Extensible Stylesheet Language, 可扩展样式语言)文件 来定义组件的显示风格),制作一套 JS ( Java Scrip )脚本语言的 SDK ( Software Development Kit, 软件开发工具包), 将与数据模型无关的逻辑实现转变为 JS 脚本语言文件传送到浏览器端进行处理, 与数据模型相关的逻辑实现则在服 务器端进行处理。 For B/S applications, convert the page description section to HTML (Hypertext Markup Language) files (via additional CSS (Cascading Style Sheets), SL (Extensible Stylesheet Language), Extensible Style Language ) file To define the display style of the component, create a JS (Java Scrip) scripting language SDK (Software Development Kit), and convert the data model-independent logic implementation into a JS scripting language file and transfer it to the browser. Processing, the logical implementation associated with the data model is processed on the server side.
本发明的最大特点在于: 1 ) 页面是用描述的方法定义的。 2 )可以通过 解析转换, 生成两套不同应用环境下的应用系统。 实现过程基于 MVC ( View Controller Model ) 架构思想, 将页面描述与组件控制分离。 由转换机制对同 一套页面表示和逻辑动作进行转换, 生成不同环境下的应用。  The main features of the invention are: 1) The page is defined by the method described. 2) Two sets of application systems in different application environments can be generated through parsing and transformation. The implementation process is based on the MVC (View Controller Model) architecture idea, separating the page description from the component control. The conversion mechanism is used to convert the same set of page representations and logical actions to generate applications in different environments.
MVC是一种软件的设计方法模式。 View (视图) , 定义给客户使用的界 面; Controller (控制器),控制页面流程,转发,提交,重定向等等; Model (模 型),完成业务逻辑或者数据持久化等工作。 MVC最主要的目的是要把表现层, 逻辑层,模型 3方面分开, 降低系统的耦合度, 提高系统的可维护性,健壮性。  MVC is a software design method pattern. View, defines the interface to be used by the client; Controller, controls page flow, forwards, commits, redirects, etc.; Model, completes business logic or data persistence. The main purpose of MVC is to separate the presentation layer, the logic layer, and the model 3, reduce the coupling degree of the system, and improve the maintainability and robustness of the system.
当客户有业务处理需求时, 可以在浏览器端的页面上进行一些操作, 客 户端通过监听页面的操作, 接受由操作组件引发的事件, 执行与页面组件定 义的业务处理动作, 在客户端不能完成该业务处理动作时, 客户端会向服务 器端发送业务处理请求, 服务器端接受请求, 并将所有的请求导引到中央控 制器。 该中央控制器负责把请求导引到适当的处理流程。 相应流程(比如: 读取数据等操作)处理完毕后, 再将处理结果传送到客户端, 客户端将处理 结果输出到相关页面上。 基于描述语言的页面定制方式, 使得界面的生成更 加灵活; 借助 MVC有效地实现了视图和业务逻辑的松耦合, 使得创建和维持 系统更为容易。  When the client has business processing requirements, the user can perform some operations on the browser side of the page. The client listens to the operation of the page, accepts the event triggered by the operation component, and performs the business processing action defined by the page component, which cannot be completed on the client. When the service processes the action, the client sends a service processing request to the server, and the server accepts the request and directs all requests to the central controller. The central controller is responsible for directing the request to the appropriate processing flow. After the corresponding process (such as: reading data and other operations) is processed, the processing result is transmitted to the client, and the client outputs the processing result to the relevant page. The page-based customization method based on the description language makes the interface generation more flexible. With MVC, the loose coupling of views and business logic is effectively realized, making it easier to create and maintain the system.
本发明的一个实施例中的客户端, 如图 2所示, 包括制作模块 101、 解析 模块 102和重组模块 103, 其中:  The client in one embodiment of the present invention, as shown in FIG. 2, includes a production module 101, a parsing module 102, and a reassembly module 103, where:
制作模块 101制作扩展标识语言 XML文件,该文件中包括页面描述部分及 与其相关联的逻辑引用;  The authoring module 101 creates an extended markup language XML file that includes a page description portion and a logical reference associated therewith;
解析模块 102根据制作模块 101制作的文件中的内容解析出内存中的对应 组件信息, 并解析出組件和与其对应的逻辑处理的关系输出给重组模块 103; 重组模块 103 ·据该组件和与其对应的逻辑处理的关系, 生成分别应用于 桌面客户端和浏览器客户端的两套系统。 The parsing module 102 parses out the corresponding component information in the memory according to the content in the file created by the production module 101, and parses out the relationship between the component and the corresponding logical processing output to the recombining module 103; The reorganization module 103 generates two sets of systems respectively applied to the desktop client and the browser client according to the relationship between the component and its corresponding logical processing.
其中, 解析模块 102可以为 XML解析引擎, 重组模块 103可以为代码重组 引擎。  The parsing module 102 can be an XML parsing engine, and the reorganization module 103 can be a code reorganization engine.
本发明技术方案带来的有益效果:  The beneficial effects brought by the technical solution of the invention:
本发明通过描述语言对界面表现层进行定制、 并编写对应的控制层代码, 开发的一套 API (应用程序接口) , 通过配置文件和转换绑定机制, 动态生成 桌面应用和 web应用两种应用系统, 大大降低了开发工作量和维护难度。  The invention customizes the interface presentation layer by describing the language, and writes the corresponding control layer code, and develops a set of API (application program interface), dynamically generates the desktop application and the web application through the configuration file and the conversion binding mechanism. The system greatly reduces the development workload and maintenance difficulty.
由于本方法的页面描述部分是采取 ML的描述方式,将页面的表示和动 作相互分离, 当需要简单的版本升级或系统需求变化时, 可以通过修改 XML 页面描述文件重新生成新的系统, 实现系统的动态定义、 动态变化, 避免重 新对系统进行编码, 有益于系统的升级、 维护。 由于转换机制的灵活性, 增 强了组件的丰富性和可扩展性。  Since the page description part of the method adopts the ML description mode, the representation and action of the page are separated from each other. When a simple version upgrade or system requirement change is required, the new system can be regenerated by modifying the XML page description file to implement the system. Dynamic definition, dynamic changes, avoiding re-encoding the system, which is beneficial to system upgrade and maintenance. Due to the flexibility of the conversion mechanism, the richness and scalability of the components are enhanced.
显然, 本领域的技术人员可以对本发明进行各种改动和变型而不脱离本 发明的精神和范围。 这样, 倘若对本发明的这些修改和变型属于本发明权利 要求及其等同技术的范围之内, 则本发明也意图包含这些改动和变型在内。  It is apparent that those skilled in the art can make various modifications and variations to the invention without departing from the spirit and scope of the invention. Therefore, it is intended that the present invention cover the modifications and variations of the invention as claimed.

Claims

权利要求 Rights request
1、 一种生成两套网管系统的方法, 其特征在于, 具体包括以下步骤: 步骤 100, 制作扩展标识语言 XML文件, 所述文件中包括页面描述部分及 与其相关联的 l辑引用;  A method for generating two sets of network management systems, comprising: the following steps: Step 100: Create an extended markup language XML file, where the file includes a page description part and a reference number associated with the page;
步骤 200, 根据所述文件中的内容解析出内存中的对应组件信息, 并解析 出组件和与其对应的逻辑处理的关系;  Step 200: Parse corresponding component information in the memory according to the content in the file, and parse out a relationship between the component and a logical processing corresponding thereto;
步骤 300, ~据所述組件和与其对应的逻辑处理的关系, 生成分别应用于 桌面客户端和浏览器客户端的两套系统。  Step 300, ~ According to the relationship between the component and its corresponding logical processing, generate two systems respectively applied to the desktop client and the browser client.
2、 根据权利要求 1所述的生成两套网管系统的方法, 其特征在于, 在步骤 200中,由 XML解析引擎根据所述文件中的内容解析出内存中的对 应组件信息, 并解析出组件和与其对应的逻辑处理的关系。  The method for generating two sets of network management systems according to claim 1, wherein in step 200, the XML parsing engine parses the corresponding component information in the memory according to the content in the file, and parses out the component. And the relationship with its corresponding logical processing.
3、 根据权利要求 1或 2所述的生成两套网管系统的方法, 其特征在于, 在步骤 300中, 由代码重组引擎根据所述组件和与其对应的逻辑处理的关 系, 生成应用于桌面和浏览器端的两套系统。  The method for generating two sets of network management systems according to claim 1 or 2, wherein in step 300, the code reorganization engine generates and applies to the desktop according to the relationship between the component and its corresponding logical processing. Two systems on the browser side.
4、 根据权利要求 1所述的生成两套网管系统的方法, 其特征在于, 在步骤 300中, 在生成应用于桌面客户端的系统时, 将所述文件内容中的 页面描述部分定义转换为页面组件, 并将与页面组件对应的逻辑处理添加到 页面组件的监听器中。  The method for generating two sets of network management systems according to claim 1, wherein in step 300, when the system applied to the desktop client is generated, the page description part definition in the file content is converted into a page. The component, and adds the logical processing corresponding to the page component to the listener of the page component.
5、 根据权利要求 4所述的生成两套网管系统的方法, 其特征在于, 在步 骤 300中, 在生成应用于桌面客户端的系统时, 所述页面組件直接从标准构件 工具包 SWT组件库提供的 SWT组件中调用。  The method for generating two sets of network management systems according to claim 4, wherein in step 300, when generating a system applied to the desktop client, the page component is directly provided from the standard component toolkit SWT component library. Called in the SWT component.
6、 根据权利要求 4所述的生成两套网管系统的方法, 其特征在于, 在步 骤 300中, 在生成应用于桌面客户端的系统时, 制作一套封装好的动作应用程 序接口, 所述页面组件直接从该套动作应用程序接口里面的组件中调用。  The method for generating two sets of network management systems according to claim 4, wherein in step 300, when generating a system applied to the desktop client, creating a packaged action application interface, the page The component is called directly from the component inside the set of action application interfaces.
7、 根据权利要求 1所述的生成两套网管系统的方法, 其特征在于, 在步 骤 300中, 在生成应用于浏览器客户端的系统时, 将页面描述部分转换为超文 本标识语言 HTML文件。 7. The method of generating two sets of network management systems according to claim 1, wherein in step 300, when generating a system applied to a browser client, converting the page description portion into a hypertext This logo language HTML file.
8、 根据权利要求 7所述的生成两套网管系统的方¾, 其特征在于, 在步 楝 300中, 在生成应用于浏览器客户端的系统过程中, 将页面描述部分转换为 HTML文件时,通过附加的层叠样式表、可扩展样式语言文件定义组件的显示 风格。  8. The method for generating two sets of network management systems according to claim 7, wherein, in step 300, when the page description portion is converted into an HTML file in the process of generating a system applied to the browser client, The display style of the component is defined by an attached cascading style sheet, an extensible style language file.
9、 根据权利要求 7所述的生成两套网管系统的方法, 其特征在于, 在步 骤 300中, 在生成应用于浏览器客户端的系统时, 制作一套 JS脚本语言的软件 开发工具包, 将与数据模型无关的逻辑实现转变为 JS脚本语言文件传送到浏 览器端进行处理, 将与数据模型相关的逻辑实现在服务器端进行处理。  The method for generating two sets of network management systems according to claim 7, wherein in step 300, when generating a system applied to the browser client, a software development kit for the JS script language is created, and The logic implementation independent of the data model is transformed into a JS scripting language file that is passed to the browser for processing, and the logical implementation associated with the data model is processed on the server side.
10、 一种客户端, 其特征在于, 包括制作模块、 解析模块和重组模块, 其中:  10. A client, comprising: a production module, a parsing module, and a reorganization module, wherein:
所述制作模块制作扩展标识语言 XML文件, 所述文件中包括页面描述部 分及与其相关联的逻辑引用;  The authoring module creates an extended markup language XML file, where the file includes a page description portion and a logical reference associated therewith;
解析模块根据所述制作模块制作的文件中的内容解析出内存中的对应组 件信息, 并解析出組件和与其对应的逻辑处理的关系输出给所述重组模块; 所述重组模块才艮据所述组件和与其对应的逻辑处理的关系, 生成分别应 用于桌面客户端和浏览器客户端的两套系统。  The parsing module parses out the corresponding component information in the memory according to the content in the file created by the production module, and parses out the relationship between the component and the corresponding logical processing and outputs the relationship to the recombination module; The relationship between the component and its corresponding logical processing generates two systems that are applied to the desktop client and the browser client, respectively.
11、 根据权利要求 10所述的客户端, 其特征在于, 所述解析模块为 XML 解析引擎。  The client according to claim 10, wherein the parsing module is an XML parsing engine.
12、 根据权利要求 10所述的客户端, 其特征在于, 所述重组模块为代码 重组引擎。 '  12. The client according to claim 10, wherein the reorganization module is a code reassembly engine. '
PCT/CN2006/003387 2006-04-23 2006-12-13 A method and client terminal of creating two network management systems WO2007121630A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CNB2006100604632A CN100426750C (en) 2006-04-23 2006-04-23 Method for generating two set of network administration systems
CN200610060463.2 2006-04-23

Publications (1)

Publication Number Publication Date
WO2007121630A1 true WO2007121630A1 (en) 2007-11-01

Family

ID=38166213

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2006/003387 WO2007121630A1 (en) 2006-04-23 2006-12-13 A method and client terminal of creating two network management systems

Country Status (2)

Country Link
CN (1) CN100426750C (en)
WO (1) WO2007121630A1 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2013136722A1 (en) * 2012-03-14 2013-09-19 住友ベークライト株式会社 Metal-clad laminate plate, printed wiring board, semiconductor package, and semiconductor device
CN110244942A (en) * 2019-06-19 2019-09-17 优信拍(北京)信息科技有限公司 A kind of page generation method, apparatus and system

Families Citing this family (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102193953B (en) * 2010-03-17 2017-04-12 日电(中国)有限公司 System and method for migrating desktop applications
CN101976189A (en) * 2010-09-26 2011-02-16 用友软件股份有限公司 Component displaying method and device
CN103164201A (en) * 2011-12-15 2013-06-19 航天信息软件技术有限公司 Web page generating method
CN103902271B (en) * 2012-12-27 2017-10-17 航天信息股份有限公司 The unified method for showing window interfaces in client and browser
CN104793933B (en) * 2015-03-31 2018-02-09 北京奇艺世纪科技有限公司 A kind of terminal data shows method and system
CN110580147B (en) * 2018-06-07 2022-07-05 阿里巴巴集团控股有限公司 Application program development method and device
CN110580174B (en) * 2018-06-11 2022-07-01 中国移动通信集团浙江有限公司 Application component generation method, server and terminal
CN109271162A (en) * 2018-09-03 2019-01-25 中国建设银行股份有限公司 A kind of page generation method and device
CN111913695A (en) * 2020-08-07 2020-11-10 国网信息通信产业集团有限公司 Code conversion method, device and storage medium
CN116127926B (en) * 2023-04-17 2023-08-04 英创互联(北京)科技有限公司 Method, device, equipment and medium for generating XSLT file of data body

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1499774A (en) * 2002-11-05 2004-05-26 深圳市中兴通讯股份有限公司上海第二 Method for generating telecommunication network management interface
CN1584828A (en) * 2004-06-02 2005-02-23 中兴通讯股份有限公司 Automatic generatnig method for configuration interface of telecommunicating apparatus

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7877681B2 (en) * 2002-12-05 2011-01-25 Borland Software Corporation Automatic context management for web applications with client side code execution
US20050144174A1 (en) * 2003-12-31 2005-06-30 Leonid Pesenson Framework for providing remote processing of a graphical user interface

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1499774A (en) * 2002-11-05 2004-05-26 深圳市中兴通讯股份有限公司上海第二 Method for generating telecommunication network management interface
CN1584828A (en) * 2004-06-02 2005-02-23 中兴通讯股份有限公司 Automatic generatnig method for configuration interface of telecommunicating apparatus

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2013136722A1 (en) * 2012-03-14 2013-09-19 住友ベークライト株式会社 Metal-clad laminate plate, printed wiring board, semiconductor package, and semiconductor device
CN110244942A (en) * 2019-06-19 2019-09-17 优信拍(北京)信息科技有限公司 A kind of page generation method, apparatus and system
CN110244942B (en) * 2019-06-19 2023-03-21 优信拍(北京)信息科技有限公司 Page generation method, device and system

Also Published As

Publication number Publication date
CN1983958A (en) 2007-06-20
CN100426750C (en) 2008-10-15

Similar Documents

Publication Publication Date Title
WO2007121630A1 (en) A method and client terminal of creating two network management systems
US6717593B1 (en) Mark-up language implementation of graphical or non-graphical user interfaces
US7216351B1 (en) Systems and methods for synchronizing multi-modal interactions
CN103927163B (en) Plugin frame processing device and plugin system
US8239340B2 (en) Message conduit systems with algorithmic data stream control and methods for processing thereof
US7007278B2 (en) Accessing legacy applications from the Internet
US20060167981A1 (en) Web application architecture
US20060149746A1 (en) Web application communication protocol
CN101192216A (en) Static state page control and WEB server interaction accomplishing method and the WEB server
US20030195923A1 (en) Presentation server
JP2007524875A (en) System and method for network-based processing
US20020194388A1 (en) Systems and methods for implementing modular DOM (Document Object Model)-based multi-modal browsers
US8826297B2 (en) Creating web services from an existing web site
US20020198719A1 (en) Reusable voiceXML dialog components, subdialogs and beans
US20030163603A1 (en) System and method for XML data binding
JP2005018777A (en) Common query runtime system and application programming interface
JP2001312442A (en) Method and device for providing access to application for data processing system
US20030233477A1 (en) Extensible infrastructure for manipulating messages communicated over a distributed network
MXPA06000085A (en) Refrigerator door and refrigerator therewith.
US20050165887A1 (en) Browser and program containing multi-medium content
WO2010072159A1 (en) Method and system for acquiring interface data and digital television receiving terminal
CA2531919A1 (en) Web application architecture
Mueller et al. Interactive multimodal user interfaces for mobile devices
JP4140878B2 (en) Method and system for implementing multimodal browsing and conversational markup languages
Honkala et al. A configurable XForms implementation

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 06828309

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 06828309

Country of ref document: EP

Kind code of ref document: A1