A Unified Data Publishing Protocol in Health Big Data Processing

Size: px
Start display at page:

Download "A Unified Data Publishing Protocol in Health Big Data Processing"

Transcription

1 nd International Conference on Computer Science and Technology (CST 2017) ISBN: A Unified Data Publishing Protocol in Health Big Data Processing Hui-jie ZHOU 1, a,* and Yong WANG 2 1 College of Computer Science and Technology, Beijing University of Technology, Beijing, china, a zhouhuiji @163.com *Corresponding author Keywords: Health Big Data, Data Publishing Protocol, TCP, Socket. Abstract. In the big data cloud platform construction of health, it is necessary to develop a data publishing standard to shield the differences of big data applications. In this paper, we studied a unified data publishing protocol in health big data processing by using the ASN.1 language to describe the data and taking the BER rules as encoding and decoding solution. We provided two kinds of data services: health data querying and health status warning. Finally, we proved that two services are feasible in the experiments. Introduction Health big data[1][2][3] research, which is the current hot topic, has caused the wide attention of the society. In recent years, the study of user's health information has obtained certain achievement. In these studies, the author chose the different functions of focus, using different techniques, different development tools, have achieved good results. However, in order to promote the health big data, we still need more detailed study in many problems of big data cloud platform construction. In health monitoring big data cloud platform[4] construction, different kinds of client, the different kinds of monitoring equipment[5], all need a unified network protocol[6] to communicate with the health monitoring cloud platform. In this paper, we studied and made a unified data publishing protocol[7][8] in health big data processing, and provided the data publishing rules and data acquisition interface to solve the problem of data. Specifically, this study choose the urban and rural residents' health records[9] basic data collection, which put forward by the committee of health information standards from the ministry of health and approved by the ministry of health, as a health monitoring data set. This study used the ASN.1 (Abstract Syntax Notation One)[10] language to describe the data, and used the BER (Basic Encoding Rules)[11] rules as encoding and decoding solution, and designd the protocol message structure, the interactive instruction and the interactive process specification for the unified data publishing protocol. Finally, this study used the java language to develop application programming interface[12], supporting for the health monitoring big data cloud platform and the development of the application software. Architecture of the Health Monitoring Big Data Cloud Platform Health monitoring big data cloud platform includes: First, receiving data from different health monitoring equipment through a unified data incoming protocol; Second, storing all health monitoring data in the cloud platform and all health data will be centrally 802

2 managed here; Last, providing data services to client based on a unified data publishing protocol. The structure of the health monitoring big data cloud platform is shown in Fig.1. All kinds of health service application layer Data publishing protocol Health state feedback Manage data efficiently Store and organize data Data privacy and security Industry application Data incoming protocol Health monitoring devices layer Figure 1. The structure of the Health Monitoring Big Data Cloud Platform. Health monitoring big data cloud platform can provide two kinds of service for third-party applications: health data querying data and health status alarming. In particular, all health data that needs to be monitored will be pre-defined in the HMIB (Health Monitoring Information Base). For the service of querying data, the cloud platform server handles various query requests issued by the client about the HMIB information and generates a response message. For the service of health status alarming, when the health monitoring and evaluation center and other health data applications found that the abnormal health status, the cloud platform server will generate an alarm message, and then send the message to designated port of the device through the network. It can help people who may concern to understand the regular information or abnormal situation. The Unified Data Publishing Protocol Data Representation The ASN.1 describes the way of the data representation, the way of the data encoding and decoding and the way of the data transmission format. This paper use asn.1 language to provide a unified network data representation, the definition of health monitoring object data type and the other the relationship between the health monitoring objects. The definition of the health monitoring information format is defined as follows: healthmonitoringobject OBJECT-TYPE SYNTAX integer ACCESS read-write DESCRIPTION "the description of the health monitoring object " ::= { parentobjectidentifier number} The healthmonitoringobject is the name of the monitored object; SYNTAX field is used to specify the abstract syntax of the health monitoring object type. As the integer 803

3 of the example, the encoding method is designated by the BER of integer encoding method; ACCESS field is used to specify the access permissions of the health monitoring information. Its value is usually read-only, read and write, only write, can not be accessed; DESCRIPTION field can be used to set the description and the significance of the monitored object; Symbol ": =" can be understood as the meaning of "defined as"; The parentobjectidentifier can be used to specify the object identifier of the current node s parent. The number represents the index number of the current node. The parentobjectidentifier and number together constitute the object identifier (OID) of the current node. Data Encoding The unified data publishing protocol in health big data processing uses the BER encoding rules for health monitoring data encoding and decoding solution. BER encoding is the basic encoding rule of the ASN.1, it describes how the specific ASN.1 object is encoded to a series of bit stream over the Internet. The format of the BER transfer syntax is the TLV triad such as < Type, Length, Value>. Each domain of the TLV is a series of eight-bit group, for composite structures, V can also be the TLV triad. The format of the BER transfer syntax is shown in Fig.2. Type domain represents the type of the value. Length domain represents the length of content bytes. Value domain gives a specific value for simple fixed-length encoding method. For structured method, it gives a series of BER encoding of the content. Data Type Data Length Data Content Figure 2. The format of the BER transfer syntax. The encoding of the systolic pressure for a monitored person is as follows: Systolic_pressure integer ::= 127 Class = Universal P/C = Primitive Type = 2 (integer) Length = 1 byte Content = 127 Then the BER encoding of the systolic pressure is as follows: Type: (0x02) Length:01 Content:7F BER encoding of the systolic pressure: F Data Organization Structure HMIB defines the collection of monitored objects, which is a database that contains the monitored data object definition. All monitored data will be pre-defined here. It defines a series of properties of the monitored data objects: the name of the object, the type of data and the way of visiting and the object identifier. HMIB can also be regarded as a bridge between the client and the server. The client communicates with the server with same HMIB. HMIB organizes all monitored information in a hierarchical structure of the tree [13]. It's so easy to expand the monitored information set. The organization format of the health monitoring data set is shown in Fig.3. Root node Health-Info is in the first level. 804

4 There are 20 nodes in the second level. Each node contains a number of monitored data objects. Health-Info Personnel Information Physical Examination Data Referral Information Id Card Health Record No Health Record No Name Temperature Referral Reason Health Record No Breath Rate Operation Name Family Address Recommended Vaccination Name Referral Date Figure 3. The organization format of the Health Monitoring Data Set. Each monitored object has an object identifier. The object identifier obtains the path of the root node to the current node. For example, the node of the hypertension patient attribute table is located in the second-level nodes. Its name is HealthInfo.highBloodPressureData, whose OID value is The number of the Systolic_pressure node is 4 in the table, and its name is HealthInfo. highbloodpressuredata.systolic_pressure, whose OID value is Protocol Packet Structure The client and the server communicate with each other by the standard message of the unified data publishing protocol. The structure of the data publishing protocol is shown in Fig.4. The message contains three parts: version number, group name and protocol data unit (PDU). Protocol data unit includes: PDU type, request ID, error state, error index and variable bindings. IP Head TCP Head Message Entity Version Number Group Name PDU Entity PDU Type Request ID Error State Error Index Variable bindings OID 1 Value 1 OID 2 Value 2 Figure 4. The structure of the Data Publishing Protocol. (1) Version-Number: It is protocol version information. (2) Group-Name: It is a view password between client and server. (3) PDU-Type: The identifier of the pdu type is an integer number. (4) Request-ID: The request identifier can be used to be identified. (5) ERROR-STATUS: It indicates whether the operation is successful. The explanation of the error state is shown in Table 1.When the server sends the response pdu, it may encounter the following situations: If the response pdu is beyond the length limit, ERROR-STATUS will be set toobig and ERROR-INDEX will be 0, the rest is 805

5 the same as request pdu; If the name of variable in the HMIB does not exist, ERROR-STATUS will be set nosuchname, and ERROR-INDEX will be the index of the current variable in the variable list, the rest is the same as request pdu; If the server does not produce the response message correctly for other reasons, ERROR-STATUS will be set generr, and ERROR-INDEX will be the index of the current variable in the variable list, the rest is the same as request pdu; If the above situation didn't happen, the response pdu will have a series of variables which contains name and value, and ERROR-STATUS will be set noerr, ERROR-INDEX will be 0. Table 1. The explanation of the error state. Error State Error Name Description 0 noerror Everything is OK. 1 toobig Server is unable to put all the query results into the response message. 2 nosuchname The current object is not in the health monitoring data set. 3 generr Other error. (6) ERROR-INDEX: It is an index where the wrong variable is. (7) VARIABLE-BINGDINGS-LIST: There is health monitoring data information, and each item is stored in the form of variable name and value. Protocol Operation Type With the perspective of the internet, the unified data publishing protocol is an application layer protocol, it needs to be done by the transport layer protocols of the Internet. The unified data publishing protocol is based on client/server architecture model, it is in a simple request/response mode, and depends on the transmission interface that TCP protocol provides and the implementation of the socket communication mechanism [14] [15]. GET Health monitoring big data cloud platform provides the service of querying data to a third-party application, It provides the interface to get the data, so that the client can visit health monitoring information by calling the specified interface. The server always opens port 4700 to monitor the request information from the client. When the client sends a GET request message to the server, server starts to receive byte stream information through the network. After decoding the byte stream information into internal data format, server can parse out the name of health monitoring object that will match with the current OID value. Next, server can query the health data from the database. Finally, server will return the health data values to the client as a response message. TRAP Health monitoring data cloud platform can also provide health information alarm service to third-party application. This can achieve the goal that to monitor health data in real time. It will waste a lot of server resources, if the client and the server establish a long connection. Therefore, the client and the server should use a short connection. But the new problems may raise: First, if the client frequently access the server to obtain data through the polling way will waste a lot of network bandwidth. Second, during the interval of accessing the server, the client may have lost real-time value when it waits 806

6 until the client next query. So, it is not desirable in this way to achieve real-time monitoring purposes. Therefore, it is necessary to find a mechanism to ensure health monitoring cloud platform can actively send warning message to the client. The TRAP operation can satisfy this demand. First, the client is supposed to open port 4701 to receive warning message. When there is an alarm of the health monitoring data in the cloud platform, server starts to open a new thread and sends the alarm information to the client on port 4701 actively. Protocol Test In order to check the effect of health monitoring service, in this paper, we took the systolic blood pressure from the hypertension patient attribute table as retrieval object to do experiment. The OID value of the systolic blood pressure is The client sent the resident identity card information and blood pressure OID to health monitoring cloud platform. Server parsed out the id number and the name of the systolic blood pressure to query from database. Finally, sever sent the results back to the client in the form of the response message. Figure 5. The result of the client. Figure 6. The result of the server. The result of the client is shown in Fig.5. And the result of the server is shown in Fig.6. As for GET operation, the experimental result shows that the ID of the GET message from the client is , and the server receives this message on port After getting the value of the systolic blood pressure from the database, the server sends the response message back to the client. Finally, the client receives the response message with the systolic blood pressure value. As for TRAP operation, the server sends a TRAP message whose id is to the client on port 4701, and the client receives the TRAP message. The result shows that the unified data publishing protocol provides data retrieval service for third-party applications successfully. 807

7 Conclusions In this article, we studied a unified data publishing protocol in health big data processing and provided the appropriate data publishing rules and data acquisition interface to solve the problem of data publishing. It provides the foundation for exploring for further breakthrough in the field of health big data. So, it is meaningful. References [1] Kuo, M., Sahama, T., Kunshniruk, A., Borycki, E., Grunwell, D. Health Big Data Analytics: Current Perspectives, Challenges and Potential Solutions. International Journal of Big Data Intelligence, 2014, 1(1/2): [2] Khoury, M. J., Ioannidis, J. P. A. Big data meets public health[j]. New Zealand Medical Journal, 2014, 93(676): [3] Murdoch, T. B., Detsky, A. S. The Inevitable Application of Big Data to Health Care[J]. Jama the Journal of the American Medical Association, 2013, 309(13): [4] Maria, A. R., Sever, P., Carlos, V. Cloud computing for big data from biomedical sensors monitoring, storage and analyze[c]. Grid, Cloud & High-Performance Computing in Science. IEEE, 2015:1-4. [5] Chen, M., Ma, Y., Song, J., et al. Smart Clothing: Connecting Human with Clouds and Big Data for Sustainable Health Monitoring[J]. Mobile Networks & Applications, 2016:1-21. [6] Holzmann, G. J. Standardized protocol interfaces[j]. Software Practice & Experience, 1993, 23(7): Holzmann G J. [7] Li-Hua, L. I. PLC Remote Monitoring Application Research Based on TCP/IP protocol[j]. Microcomputer Information, [8] Luo, H. D. Application and Development of Network Communication Based on TCP/IP Protocol[J]. Qinghai Electric Power, [9] Peters, S. G., Buntrock, J. D. Big data and the electronic health record.[j]. Yearbook of Medical Informatics, 2014, 9(1): [10] Itu-T. X. Information Technology--Abstract Syntax Notation One (ASN.1): Specification of Basic Notation[J]. Journal of the Chemical Society Faraday Transactions, 2002, 19(1): [11] Itu-T, R. X. Information technology -- ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)[J]. Iso/iec, [12] Gosling, J., Yellin, F. The java application programming interface[c]. Core Packages. 1996: [13] Wu, B., Liu, X., Tan, A., et al. Network Management Scheme Based on TCP/IP Protocol[J]. International Journal of Digital Content Technology & Its Applications, 2013, 7(7):

8 [14] Feng-Xiang, W. U., Sun, X. S., Yuan, Y. C. Socket programming based on TCP/IP in Java[J]. Journal of Agricultural University of Hebei, [15] Zou, Y., Che,n J. Research and Implement of Network Programming Based on Socket[J]. Computer Programming Skills & Maintenance,

Remote Supervising of Power Plant

Remote Supervising of Power Plant 2017 2nd International Conference on Computer, Mechatronics and Electronic Engineering (CMEE 2017) ISBN: 978-1-60595-532-2 Remote Supervising of Power Plant Hui-ran WANG 1 and Rui-fang MA 2, * 1 College

More information

The Design of Water Quality Monitoring Cloud Platform Based on. BS Architecture

The Design of Water Quality Monitoring Cloud Platform Based on. BS Architecture The Design of Water Quality Monitoring Cloud Platform Based on BS Architecture Chen Yu-jie 1, a, Liu Pei-xue 1, b, Jiang Bao-hua 1, c, Feng Fei 1, d Qingdao Huanghai College, Qingdao266427, China a chenyujie_cc@163.com,

More information

LDAP-based IOT Object Information Management Scheme

LDAP-based IOT Object Information Management Scheme ISSN 2409-2665 Journal of Logistics, Informatics and Service Science Vol. 1 (2014) No. 1, pp. 11-22 LDAP-based IOT Object Information Management Scheme Li Hai 1*, Fan Chunxiao 1, Wu Yuexin 1, Liu Jie 1,

More information

Greenhouse Equipment Data Acquisition and Display Platform Based on Socket Java

Greenhouse Equipment Data Acquisition and Display Platform Based on Socket Java 2017 2nd International Conference on Environmental Science and Energy Engineering (ICESEE 2017) ISBN: 978-1-60595-417-2 Greenhouse Equipment Data Acquisition and Display Platform Based on Java Guo-jian

More information

Part 5: Protocol specifications

Part 5: Protocol specifications INTERNATIONAL STANDARD ISO/IEC 9594-5 Eighth edition 2017-05 Information technology Open Systems Interconnection The Directory Part 5: Protocol specifications Technologies de l information Interconnexion

More information

The Internet of Things for Petroleum Transportation

The Internet of Things for Petroleum Transportation 2017 2nd International Conference on Applied Mechanics and Mechatronics Engineering (AMME 2017) ISBN: 978-1-60595-521-6 The Internet of Things for Petroleum Transportation Hui-ran WANG 1 and Rui-fang MA

More information

TTM 4128 Exam May 19th 2012 (English) Task 1. SNMP and WEB-based management -General (35%) Please provide short and precise answers.

TTM 4128 Exam May 19th 2012 (English) Task 1. SNMP and WEB-based management -General (35%) Please provide short and precise answers. TTM 4128 Exam May 19th 2012 (English) Appendix 1: SNMPv2 PDU Definitions Appendix 2: ASN.1 BER Encoding Summary Task 1. SNMP and WEB-based management -General (35%) Please provide short and precise answers.

More information

The Research and Design of the Android-Based Facilities Environment Multifunction Remote Monitoring System*

The Research and Design of the Android-Based Facilities Environment Multifunction Remote Monitoring System* The Research and Design of the Android-Based Facilities Environment Multifunction Remote Monitoring System* Lutao Gao, Linnan ang, Lin Peng, ingjie Chen, and ongzhou u College of Basic Science & Information

More information

Design and Implementation of Remote Medical Monitoring System for. Homecare

Design and Implementation of Remote Medical Monitoring System for. Homecare 2nd International Conference on Electronics, Network and Computer Engineering (ICENCE 2016) Design and Implementation of Remote Medical Monitoring System for Homecare Juan Zhong1, a, * Hua Liao2, b 1 College

More information

ISO/IEC INTERNATIONAL STANDARD. Information technology Open Systems Interconnection The Directory Part 5: Protocol specifications

ISO/IEC INTERNATIONAL STANDARD. Information technology Open Systems Interconnection The Directory Part 5: Protocol specifications INTERNATIONAL STANDARD ISO/IEC 9594-5 Seventh edition 2014-03-01 Information technology Open Systems Interconnection The Directory Part 5: Protocol specifications Technologies de l'information Interconnexion

More information

Reliable Mobile IP Multicast Based on Hierarchical Local Registration

Reliable Mobile IP Multicast Based on Hierarchical Local Registration Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Reliable Mobile IP Multicast Based on Hierarchical Local Registration Huanming ZHANG, * Quanlong GUAN, Zi Zhao ZHU, Weiqi

More information

Study of Smart Home System based on Zigbee Wireless Sensor System. Jie Huang 1

Study of Smart Home System based on Zigbee Wireless Sensor System. Jie Huang 1 2nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 2016) Study of Smart Home System based on Zigbee Wireless Sensor System Jie Huang 1 1 College of Mechanical and Electronic

More information

Dual-System Warm Standby of Remote Sensing Satellite Control System Technology

Dual-System Warm Standby of Remote Sensing Satellite Control System Technology 2016 3 rd International Conference on Materials Science and Mechanical Engineering (ICMSME 2016) ISBN: 978-1-60595-391-5 Dual-System Warm Standby of Remote Sensing Satellite Control System Technology Fei

More information

Integration of information security and network data mining technology in the era of big data

Integration of information security and network data mining technology in the era of big data Acta Technica 62 No. 1A/2017, 157 166 c 2017 Institute of Thermomechanics CAS, v.v.i. Integration of information security and network data mining technology in the era of big data Lu Li 1 Abstract. The

More information

Information Retrieval System Based on Context-aware in Internet of Things. Ma Junhong 1, a *

Information Retrieval System Based on Context-aware in Internet of Things. Ma Junhong 1, a * Information Retrieval System Based on Context-aware in Internet of Things Ma Junhong 1, a * 1 Xi an International University, Shaanxi, China, 710000 a sufeiya913@qq.com Keywords: Context-aware computing,

More information

ISO/IEC Information technology Open Systems Interconnection The Directory: Protocol specifications

ISO/IEC Information technology Open Systems Interconnection The Directory: Protocol specifications This is a preview - click here to buy the full publication INTERNATIONAL STANDARD ISO/IEC 9594-5 Fifth edition 2005-12-15 Information technology Open Systems Interconnection The Directory: Protocol specifications

More information

TSIN02 - Internetworking

TSIN02 - Internetworking Lecture 10: SNMP and AAA Literature: Forouzan, chapter 23 RFC2881 RFC2905 RFC2903 Diameter next generation's AAA protocol by Håkan Ventura (handouts) 2004 Image Coding Group, Linköpings Universitet Lecture

More information

Research on Heterogeneous Communication Network for Power Distribution Automation

Research on Heterogeneous Communication Network for Power Distribution Automation 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) Research on Heterogeneous Communication Network for Power Distribution Automation Qiang YU 1,a*, Hui HUANG

More information

Received Snmp Response With Error Code Nosuchname

Received Snmp Response With Error Code Nosuchname Received Snmp Response With Error Code Nosuchname That particular response is generated by the remote device, not that nagios server. It is telling you that it received your request, but for some reason

More information

Traffic Flow Prediction Based on the location of Big Data. Xijun Zhang, Zhanting Yuan

Traffic Flow Prediction Based on the location of Big Data. Xijun Zhang, Zhanting Yuan 5th International Conference on Civil Engineering and Transportation (ICCET 205) Traffic Flow Prediction Based on the location of Big Data Xijun Zhang, Zhanting Yuan Lanzhou Univ Technol, Coll Elect &

More information

A Data Collecting and Caching Mechanism for Gateway Middleware in the Web of Things

A Data Collecting and Caching Mechanism for Gateway Middleware in the Web of Things A Data Collecting and Caching Mechanism for Gateway Middleware in the Web of Things Xuchao Chang, Chunhong Zhang, Li Sun Beijing University of Posts and Telecommunications, Beijing, 100876, China E-mail:

More information

The Application of Wireless Sensor in Aquaculture Water Quality Monitoring

The Application of Wireless Sensor in Aquaculture Water Quality Monitoring The Application of Wireless Sensor in Aquaculture Water Quality Monitoring Wen Ding, Yinchi Ma Beijing Fisheries Research Institute, Beijing, 100068, China {dingwen, mayinchi}@bjfishery.com Abstract. The

More information

CHAPTER. Introduction

CHAPTER. Introduction CHAPTER 1 Network management takes place between two major types of systems: those in control, called managing systems, and those observed and controlled, called managed systems. The most common managing

More information

SNMP. Simple Network Management Protocol Philippines Network Operators Group, March Jonathan Brewer Telco2 Limited New Zealand

SNMP. Simple Network Management Protocol Philippines Network Operators Group, March Jonathan Brewer Telco2 Limited New Zealand SNMP Simple Network Management Protocol Philippines Network Operators Group, March 2018 Jonathan Brewer Telco2 Limited New Zealand Objectives Participants will understand the basics of: SNMP Architecture

More information

Intelligent Computer Room Management Platform Based on RF Card

Intelligent Computer Room Management Platform Based on RF Card 2017 2 nd International Conference on Artificial Intelligence and Engineering Applications (AIEA 2017) ISBN: 978-1-60595-485-1 Intelligent Computer Room Management Platform Based on RF Card LI ZHANG and

More information

A Design of Remote Monitoring System based on 3G and Internet Technology

A Design of Remote Monitoring System based on 3G and Internet Technology National Conference on Information Technology and Computer Science (CITCS 2012) A Design of Remote Monitoring System based on 3G and Internet Technology Shouxian WEN Lei XU Xingguo SUN Xiaohui LI* Abstract

More information

No. MIIMS0009EA DICOM CONFORMANCE STATEMENT FOR MODEL TFS-3000 (MIIMS0009EA) TOSHIBA CORPORATION 2001 ALL RIGHTS RESERVED

No. MIIMS0009EA DICOM CONFORMANCE STATEMENT FOR MODEL TFS-3000 (MIIMS0009EA) TOSHIBA CORPORATION 2001 ALL RIGHTS RESERVED DICOM CONFORMANCE STATEMENT FOR MODEL TFS-3000 (MIIMS0009EA) TOSHIBA CORPORATION 2001 ALL RIGHTS RESERVED IMPORTANT! (1) No part of this manual may be copied or reprinted, in whole or in part, without

More information

Design and Implementation of Advanced Internet Management System

Design and Implementation of Advanced Internet Management System Design and Implementation of Advanced Internet Management System Chia-Sheng Tsai 1*, and Cheng-Wei Lin Abstract With the rapidly growing on Internet and variety applications through Internet, user reliabilities

More information

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,*

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,* 2016 Joint International Conference on Service Science, Management and Engineering (SSME 2016) and International Conference on Information Science and Technology (IST 2016) ISBN: 978-1-60595-379-3 The

More information

Internet Management Overview

Internet Management Overview Internet Management Overview Based on the Manager-Agent Model Initially SNMPv1 (1990), SNMPv2 1996 Managed Objects similar to OSI attributes, specified through ASN.1 Macros the SNMP Structure of Management

More information

Design of Temperature and Humidity Data Acquisition System. Based on ARM

Design of Temperature and Humidity Data Acquisition System. Based on ARM 2017 International Conference on Computational Science and Engineering (ICCSE 2017) Design of Temperature and Humidity Data Acquisition System Based on ARM Pei-xue Liu 1, a, Yu-jie Chen 1, b, Bao-hua Jiang

More information

Wireless thermal charging system based on GPRS technology 1

Wireless thermal charging system based on GPRS technology 1 Acta Technica 61, No. 4B/2016, 231 238 c 2017 Institute of Thermomechanics CAS, v.v.i. Wireless thermal charging system based on GPRS technology 1 Yu Yao 2, Xiao Zhigang 2, Kevin Gao 3 Abstract. The thermal

More information

A metadata based agricultural universal scientific and technical information fusion and service framework

A metadata based agricultural universal scientific and technical information fusion and service framework A metadata based agricultural universal scientific and technical information fusion and service framework ui Yunpeng 1, Liu Shihong 1, Sun SuFen 2, Zhang Junfeng 2, Zheng Huaiguo 2 1. Key Laboratory of

More information

Design of Liquid Level Control System Based on Simulink and PLC

Design of Liquid Level Control System Based on Simulink and PLC 2017 3rd International Symposium on Mechatronics and Industrial Informatics (ISMII 2017) ISBN: 978-1-60595-501-8 Design of Liquid Level Control System Based on Simulink and PLC Xiuwei FU 1,a, Ying QI 2,b

More information

and Registration Authorities

and Registration Authorities Introduction to Object Identifiers (OIDs) and Introduction Registration to Authorities Object Identifiers (OIDs) and Registration Authorities France Telecom Orange Olivier Dubuisson 7 March 2011 Many approaches

More information

DICOM 3.0 Conformance Statement

DICOM 3.0 Conformance Statement DICOM 3.0 Conformance Statement DICOMLink v1.2 for ICON Siemens Medical Systems, Inc. Nuclear Medicine Group DICOM Conformance Statement DICOM 3.0 Conformance Statement Siemens ICON DICOMlink v1.2 for

More information

Performance Comparison and Analysis of Power Quality Web Services Based on REST and SOAP

Performance Comparison and Analysis of Power Quality Web Services Based on REST and SOAP 5th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2017) Performance Comparison and Analysis of Power Quality Web Services Based on REST and SOAP Suxia

More information

SNMP and Network Management

SNMP and Network Management Contents SNMP and Network Management Network Management MIB naming tree, MIB-II SNMP protocol SNMP traps SNMP versions Nixu Ltd 2 Network management When you have 100s of computers in a network or are

More information

A Novel Intrusion Detection Method for WSN Sijia Wang a, Qi Li and Yanhui Guo

A Novel Intrusion Detection Method for WSN Sijia Wang a, Qi Li and Yanhui Guo International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) A Novel Intrusion Detection Method for WSN Sijia Wang a, Qi Li and Yanhui Guo Beijing University of

More information

Wireless Smart Home Security System Based on Android

Wireless Smart Home Security System Based on Android 2017 2 nd International Conference on Artificial Intelligence and Engineering Applications (AIEA 2017) ISBN: 978-1-60595-485-1 Wireless Smart Home Security System Based on Android LIANGYU CHEN, SEN ZHANG

More information

A Hybrid Architecture for Video Transmission

A Hybrid Architecture for Video Transmission 2017 Asia-Pacific Engineering and Technology Conference (APETC 2017) ISBN: 978-1-60595-443-1 A Hybrid Architecture for Video Transmission Qian Huang, Xiaoqi Wang, Xiaodan Du and Feng Ye ABSTRACT With the

More information

An Solution of Network Service Oriented Operator Network Intrusion Prevention

An Solution of Network Service Oriented Operator Network Intrusion Prevention International Symposium on Computers & Informatics (ISCI 2015) An Solution of Network Service Oriented Operator Network Intrusion Prevention Jie Li, Yang Li DIGITAL CHINA(CHINA)LIMITED, Beijing, China

More information

Distributed Systems 8. Remote Procedure Calls

Distributed Systems 8. Remote Procedure Calls Distributed Systems 8. Remote Procedure Calls Paul Krzyzanowski pxk@cs.rutgers.edu 10/1/2012 1 Problems with the sockets API The sockets interface forces a read/write mechanism Programming is often easier

More information

SNMP and Network Management

SNMP and Network Management SNMP and Network Management Nixu Ltd Contents Network Management MIB naming tree, MIB-II SNMP protocol SNMP traps SNMP versions 2 Network management When you have 100s of computers in a network or are

More information

Construction Scheme for Cloud Platform of NSFC Information System

Construction Scheme for Cloud Platform of NSFC Information System , pp.200-204 http://dx.doi.org/10.14257/astl.2016.138.40 Construction Scheme for Cloud Platform of NSFC Information System Jianjun Li 1, Jin Wang 1, Yuhui Zheng 2 1 Information Center, National Natural

More information

Remote Monitoring System of Ship Running State under Wireless Network

Remote Monitoring System of Ship Running State under Wireless Network Journal of Shipping and Ocean Engineering 7 (2017) 181-185 doi 10.17265/2159-5879/2017.05.001 D DAVID PUBLISHING Remote Monitoring System of Ship Running State under Wireless Network LI Ning Department

More information

The technology of variable message format simulation in software testing Fei.Gao 1, a, Xuejun. Bi 1, a and Xiaozhen. Wang 1, a

The technology of variable message format simulation in software testing Fei.Gao 1, a, Xuejun. Bi 1, a and Xiaozhen. Wang 1, a International Conference on Materials Engineering and Information Technology Applications (MEITA 2015) The technology of variable message format simulation in software testing Fei.Gao 1, a, Xuejun. Bi

More information

2017 2nd International Conference on Information Technology and Management Engineering (ITME 2017) ISBN:

2017 2nd International Conference on Information Technology and Management Engineering (ITME 2017) ISBN: 2017 2nd International Conference on Information Technology and Management Engineering (ITME 2017) ISBN: 978-1-60595-415-8 Design and Implementation of a Mobile Healthcare Management Platform Based on

More information

Clinical Database applications in hospital

Clinical Database applications in hospital Clinical Database applications in hospital Mo Sun, Ye Lin, Roger Yim Lee sun2m, lin2y, lee1ry@cmich.edu Department of Computer Science Central Michigan University Abstract Database applications are used

More information

SNMP Agent Plug-In PTC Inc. All Rights Reserved.

SNMP Agent Plug-In PTC Inc. All Rights Reserved. 2018 PTC Inc. All Rights Reserved. 2 Table of Contents SNMP Agent Plug-In 1 Table of Contents 2 SNMP Agent Plug-In 4 Overview 4 Agent Setup 5 General 5 Network Interfaces 7 Communication 8 Agent Actions

More information

A Compatible Public Service Platform for Multi-Electronic Certification Authority

A Compatible Public Service Platform for Multi-Electronic Certification Authority Applied Mechanics and Materials Submitted: 2014-04-26 ISSN: 1662-7482, Vol. 610, pp 579-583 Accepted: 2014-05-26 doi:10.4028/www.scientific.net/amm.610.579 Online: 2014-08-11 2014 Trans Tech Publications,

More information

ISO/IEC JTC 1 N 13127

ISO/IEC JTC 1 N 13127 ISO/IEC JTC 1 N 13127 ISO/IEC JTC 1 Information technology Secretariat: ANSI (United States) Document type: Title: Status: Business Plan BUSINESS PLAN for JTC1/SC6, Telecommunications and Information Exchange

More information

SNMP Simple Network Management Protocol

SNMP Simple Network Management Protocol SNMP Simple Network Management Protocol Simple Network Management Protocol SNMP is a framework that provides facilities for managing and monitoring network resources on the Internet. Components of SNMP:

More information

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2 Applied Mechanics and Materials Online: 2014-05-23 ISSN: 1662-7482, Vols. 556-562, pp 4998-5002 doi:10.4028/www.scientific.net/amm.556-562.4998 2014 Trans Tech Publications, Switzerland Research on the

More information

Preliminary Research on Distributed Cluster Monitoring of G/S Model

Preliminary Research on Distributed Cluster Monitoring of G/S Model Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 860 867 2012 International Conference on Solid State Devices and Materials Science Preliminary Research on Distributed Cluster Monitoring

More information

Study ON Remote Medical Monitoring System Based ON MSP430 AND CC2530

Study ON Remote Medical Monitoring System Based ON MSP430 AND CC2530 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 2015) Study ON Remote Medical Monitoring System Based ON MSP430 AND CC2530 SONG Aijuan, SI Guangyuan, GU Qiongchan

More information

Research Article Implementation of Personal Health Device Communication Protocol Applying ISO/IEEE

Research Article Implementation of Personal Health Device Communication Protocol Applying ISO/IEEE Distributed Sensor Networks, Article ID 291295, 4 pages http://dx.doi.org/10.1155/2014/291295 Research Article Implementation of Personal Health Device Communication Protocol Applying ISO/IEEE 11073-20601

More information

Simple Network Management Protocol

Simple Network Management Protocol 56 CHAPTER Chapter Goals Discuss the SNMP Management Information Base. Describe SNMP version 1. Describe SNMP version 2. Background The (SNMP) is an application layer protocol that facilitates the exchange

More information

A Method and System for Thunder Traffic Online Identification

A Method and System for Thunder Traffic Online Identification 2016 3 rd International Conference on Engineering Technology and Application (ICETA 2016) ISBN: 978-1-60595-383-0 A Method and System for Thunder Traffic Online Identification Jinfu Chen Institute of Information

More information

HyperText Transfer Protocol. HTTP Commands. HTTP Responses

HyperText Transfer Protocol. HTTP Commands. HTTP Responses Hyper Transfer Protocol HTTP - just a different file transfer protocol Simplified, standard client/server model just one connection for commands and data Data transferred is structured Similar to MIME

More information

Command Manual SNMP-RMON. Table of Contents

Command Manual SNMP-RMON. Table of Contents Table of Contents Table of Contents... 1-1 1.1 SNMP Configuration Commands... 1-1 1.1.1 display snmp-agent... 1-1 1.1.2 display snmp-agent community... 1-2 1.1.3 display snmp-agent group... 1-3 1.1.4 display

More information

Yunfeng Zhang 1, Huan Wang 2, Jie Zhu 1 1 Computer Science & Engineering Department, North China Institute of Aerospace

Yunfeng Zhang 1, Huan Wang 2, Jie Zhu 1 1 Computer Science & Engineering Department, North China Institute of Aerospace [Type text] [Type text] [Type text] ISSN : 0974-7435 Volume 10 Issue 20 BioTechnology 2014 An Indian Journal FULL PAPER BTAIJ, 10(20), 2014 [12526-12531] Exploration on the data mining system construction

More information

Serial Communication Based on LabVIEW for the Development of an ECG Monitor

Serial Communication Based on LabVIEW for the Development of an ECG Monitor Advanced Materials Research Online: 2013-08-16 ISSN: 1662-8985, Vols. 734-737, pp 3003-3006 doi:10.4028/www.scientific.net/amr.734-737.3003 2013 Trans Tech Publications, Switzerland Serial Communication

More information

Design of Soybean Milk Machine Control System based on STC89C52. Ya-gang SUN, Yue ZHANG, Zhi-gang YANG, Rui-cheng ZHANG and Xiao-wei SHEN

Design of Soybean Milk Machine Control System based on STC89C52. Ya-gang SUN, Yue ZHANG, Zhi-gang YANG, Rui-cheng ZHANG and Xiao-wei SHEN 2016 International Conference on Advanced Manufacture Technology and Industrial Application (AMTIA 2016) ISBN: 978-1-60595-387-8 Design of Soybean Milk Machine Control System based on STC89C52 Ya-gang

More information

ISO/IEC INTERNATIONAL STANDARD

ISO/IEC INTERNATIONAL STANDARD INTERNATIONAL STANDARD ISO/IEC 15945 First edition 2002-02-01 Information technology Security techniques Specification of TTP services to support the application of digital signatures Technologies de l'information

More information

A Network Disk Device Based on Web Accessing

A Network Disk Device Based on Web Accessing TELKOMNIKA Indonesian Journal of Electrical Engineering Vol.12, No.6, June 2014, pp. 4387 ~ 4392 DOI: 10.11591/telkomnika.v12i6.5472 4387 A Network Disk Device Based on Web Accessing QunFang Yuan 1, Wenxia

More information

, ,China. Keywords: CAN BUS,Environmental Factors,Data Collection,Roll Call.

, ,China. Keywords: CAN BUS,Environmental Factors,Data Collection,Roll Call. Advanced Materials Research Online: 2013-09-04 ISS: 1662-8985, Vols. 765-767, pp 1693-1696 doi:10.4028/www.scientific.net/amr.765-767.1693 2013 Trans Tech Publications, Switzerland The design of artificial

More information

Remote Health Monitoring for an Embedded System

Remote Health Monitoring for an Embedded System July 20, 2012 Remote Health Monitoring for an Embedded System Authors: Puneet Gupta, Kundan Kumar, Vishnu H Prasad 1/22/2014 2 Outline Background Background & Scope Requirements Key Challenges Introduction

More information

Table of Contents 1 SNMP Configuration Commands RMON Configuration Commands 2-1

Table of Contents 1 SNMP Configuration Commands RMON Configuration Commands 2-1 Table of Contents 1 SNMP Configuration Commands 1-1 SNMP Configuration Commands 1-1 display snmp-agent 1-1 display snmp-agent community 1-1 display snmp-agent group 1-3 display snmp-agent mib-view 1-4

More information

Research on Design and Application of Computer Database Quality Evaluation Model

Research on Design and Application of Computer Database Quality Evaluation Model Research on Design and Application of Computer Database Quality Evaluation Model Abstract Hong Li, Hui Ge Shihezi Radio and TV University, Shihezi 832000, China Computer data quality evaluation is the

More information

Category: Experimental June 2006

Category: Experimental June 2006 Network Working Group K. Zeilenga Request for Comments: 4531 OpenLDAP Foundation Category: Experimental June 2006 Lightweight Directory Access Protocol (LDAP) Turn Operation Status of This Memo This memo

More information

Data Exchange between Real Network Component and OPNET Modeler Simulation Environment

Data Exchange between Real Network Component and OPNET Modeler Simulation Environment Data Exchange between Real Network Component and OPNET Modeler Simulation Environment MILAN BARTL, JIRI HOSEK, TOMAS MATOCHA, KAROL MOLNAR, LUKAS RUCKA Department of Telecommunications Faculty of Electrical

More information

ISO/IEC INTERNATIONAL STANDARD. Information technology ASN.1 encoding rules: Specification of Octet Encoding Rules (OER)

ISO/IEC INTERNATIONAL STANDARD. Information technology ASN.1 encoding rules: Specification of Octet Encoding Rules (OER) INTERNATIONAL STANDARD ISO/IEC 8825-7 Second edition 2015-11-15 Information technology ASN.1 encoding rules: Specification of Octet Encoding Rules (OER) Technologies de l'information -- Règles de codage

More information

Network Management. Raj Jain Raj Jain. Washington University in St. Louis

Network Management. Raj Jain Raj Jain. Washington University in St. Louis Network Management Raj Jain Raj Jain Washington University in Saint Louis Saint Louis, MO 63130 Jain@wustl.edu Audio/Video recordings of this lecture are available on-line at: http://www.cse.wustl.edu/~jain/cse473-09/

More information

Distributed Systems. How do regular procedure calls work in programming languages? Problems with sockets RPC. Regular procedure calls

Distributed Systems. How do regular procedure calls work in programming languages? Problems with sockets RPC. Regular procedure calls Problems with sockets Distributed Systems Sockets interface is straightforward [connect] read/write [disconnect] Remote Procedure Calls BUT it forces read/write mechanism We usually use a procedure call

More information

Communication networks and systems for power utility automation Part 80-3: Mapping to web protocols Requirements and technical choices

Communication networks and systems for power utility automation Part 80-3: Mapping to web protocols Requirements and technical choices TECHNICAL REPORT IEC TR 61850-80-3 Edition 1.0 2015-11 colour inside Communication networks and systems for power utility automation Part 80-3: Mapping to web protocols Requirements and technical choices

More information

Network Video Surveillance System Based on Embedded Linux and ARM Technology

Network Video Surveillance System Based on Embedded Linux and ARM Technology Network Video Surveillance System Based on Embedded Linux and ARM Technology Abstract Feng Zhou Information Engineering Department, Suihua University, Suihua 152061, China With development of computer

More information

Network Management. Jaakko Kotimäki. Department of Computer Science Aalto University, School of Science and Technology. 16.

Network Management. Jaakko Kotimäki. Department of Computer Science Aalto University, School of Science and Technology. 16. Jaakko Kotimäki Department of Computer Science Aalto University, School of Science and Technology Outline Introduction SNMP architecture Management Information Base SNMP protocol Network management in

More information

NET311 Computer Networks Management Standards, Models and Language

NET311 Computer Networks Management Standards, Models and Language NET311 Computer Networks Management Standards, Models and Language Dr. Mostafa H. Dahshan Department of Computer Engineering College of Computer and Information Sciences King Saud University mdahshan@ksu.edu.sa

More information

ISO/IEC INTERNATIONAL STANDARD. Information technology ASN.1 encoding rules: Specification of Encoding Control Notation (ECN)

ISO/IEC INTERNATIONAL STANDARD. Information technology ASN.1 encoding rules: Specification of Encoding Control Notation (ECN) INTERNATIONAL STANDARD ISO/IEC 8825-3 Second edition 2008-12-15 Information technology ASN.1 encoding rules: Specification of Encoding Control Notation (ECN) Technologies de l'information Règles de codage

More information

Design and Realization of Agricultural Information Intelligent Processing and Application Platform

Design and Realization of Agricultural Information Intelligent Processing and Application Platform Design and Realization of Agricultural Information Intelligent Processing and Application Platform Dan Wang 1,2 1 Institute of Agricultural Information, Chinese Academy of Agricultural Sciences, Beijing

More information

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption International Conference on Manufacturing Science and Engineering (ICMSE 2015) Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption Zeng Rong 1, a, Xia Wei 2, Wang Hongkai

More information

Design of Smart Home System Based on ZigBee Technology and R&D for Application

Design of Smart Home System Based on ZigBee Technology and R&D for Application Energy and Power Engineering, 2016, 8, 13-22 Published Online January 2016 in SciRes. http://www.scirp.org/journal/epe http://dx.doi.org/10.4236/epe.2016.81002 Design of Smart Home System Based on ZigBee

More information

A Dynamic Adaptive Algorithm Based on HTTP Streaming Media Technology

A Dynamic Adaptive Algorithm Based on HTTP Streaming Media Technology 2016 International Conference on Electronic Information Technology and Intellectualization (ICEITI 2016) ISBN: 978-1-60595-364-9 A Dynamic Adaptive Algorithm Based on HTTP Streaming Media Technology Zhufeng

More information

Table of Contents Chapter 1 SNMP Configuration Commands

Table of Contents Chapter 1 SNMP Configuration Commands Table of Contents Table of Contents... 1-1 1.1 SNMP Configuration Commands... 1-1 1.1.1 display snmp-agent local-engineid... 1-1 1.1.2 display snmp-agent community... 1-1 1.1.3 display snmp-agent group...

More information

The Research of Internet of Things in Operation and Maintenance for Distribution Grid

The Research of Internet of Things in Operation and Maintenance for Distribution Grid 2016 3 rd International Conference on Engineering Technology and Application (ICETA 2016) ISBN: 978-1-60595-383-0 The Research of Internet of Things in Operation and Maintenance for Distribution Grid Hengbo

More information

Outline Network Management MIB naming tree, MIB-II SNMP protocol Network management in practice. Network Management. Jaakko Kotimäki.

Outline Network Management MIB naming tree, MIB-II SNMP protocol Network management in practice. Network Management. Jaakko Kotimäki. Outline MIB naming tree, MIB-II SNMP protocol Network management in practice 19.10.2010 Outline MIB naming tree, MIB-II SNMP protocol Network management in practice Outline Contents MIB naming tree, MIB-II

More information

Road Network Traffic Congestion Evaluation Simulation Model based on Complex Network Chao Luo

Road Network Traffic Congestion Evaluation Simulation Model based on Complex Network Chao Luo 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 26) Road Network Traffic Congestion Evaluation Simulation Model based on Complex Network Chao Luo Department

More information

ISO/IEC INTERNATIONAL STANDARD

ISO/IEC INTERNATIONAL STANDARD INTERNATIONAL STANDARD ISO/IEC 15962 First edition 2004-10-15 Information technology Radio frequency identification (RFID) for item management Data protocol: data encoding rules and logical memory functions

More information

Design and Implementation of Dual-Mode Wireless Video Monitoring System

Design and Implementation of Dual-Mode Wireless Video Monitoring System Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Design and Implementation of Dual-Mode Wireless Video Monitoring System BAO Song-Jian, YANG Shou-Liang ChongQing University

More information

SERIES X: DATA NETWORKS, OPEN SYSTEM COMMUNICATIONS AND SECURITY OSI networking and system aspects Abstract Syntax Notation One (ASN.

SERIES X: DATA NETWORKS, OPEN SYSTEM COMMUNICATIONS AND SECURITY OSI networking and system aspects Abstract Syntax Notation One (ASN. I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T X.696 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (08/2015) SERIES X: DATA NETWORKS, OPEN SYSTEM COMMUNICATIONS AND SECURITY

More information

Part 5: Protocol specifications

Part 5: Protocol specifications INTERNATIONAL STANDARD ISO/IEC 9594-5 Eighth edition 2017-05 Information technology Open Systems Interconnection The Directory Part 5: Protocol specifications Technologies de l information Interconnexion

More information

The design and implementation of UML-based students information management system

The design and implementation of UML-based students information management system The design and implementation of UML-based students information management system Abstract Yunli Cheng 1, a, ChuanQin Li 2, b 1 Guangzhou Nanyang Polytechnic, Guangzhou 510925, China 2 Guangzhou Huaxia

More information

The Design and Implementation of Workflow Simulation based on the Theory of Discrete Event

The Design and Implementation of Workflow Simulation based on the Theory of Discrete Event The Design and Implementation of Workflow Simulation based on the Theory of Discrete Event Kehe Wu 1,a, Shuo Shi 1,b, Gang Ma 1,c and Shengzhuang Wang 1,d 1 School of North China Electric Power University,

More information

External Data Representation (XDR)

External Data Representation (XDR) External Data Representation (XDR) Prof. Chuan-Ming Liu Computer Science and Information Engineering National Taipei University of Technology Taipei, TAIWAN NTUT, TAIWAN 1 Introduction This chapter examines

More information

Design and Implementation of Aquarium Remote Automation Monitoring and Control System

Design and Implementation of Aquarium Remote Automation Monitoring and Control System Design and Implementation of Aquarium Remote Automation Monitoring and Control System Yinchi Ma 1,2,* and Wen Ding 1,2 1 Beijing Fisheries Research Institute, Beijing, 100068, China 2 National Engineering

More information

Lecture 18: Network Management

Lecture 18: Network Management Lecture 18: Network Management Prof. Shervin Shirmohammadi SITE, University of Ottawa Prof. Shervin Shirmohammadi CEG 4183 18-1 Objective Manage a network by managing its components: routers, bridges,

More information

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 2nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 2016) Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 1

More information

Internet of Things: An Introduction

Internet of Things: An Introduction Internet of Things: An Introduction IoT Overview and Architecture IoT Communication Protocols Acknowledgements 1.1 What is IoT? Internet of Things (IoT) comprises things that have unique identities and

More information

Dx Server for Windows NT DICOM 3.0 Conformance Statement

Dx Server for Windows NT DICOM 3.0 Conformance Statement Dx Server for Windows NT DICOM 3.0 Conformance Statement NAME FONCTION VISA AUTHOR Alain Battistini Senior Engineer CONFORM TO ORIGINAL REVIEW Jean-François Hoh Senior Engineer CONFORM TO ORIGINAL APPROVAL

More information