An XML Description Language for Web-based Network Simulation

Size: px
Start display at page:

Download "An XML Description Language for Web-based Network Simulation"

Transcription

1 An XML Description Language for Web-based Network Simulation R. Canonico, D. Emma, G. Ventre Università di Napoli "Federico II", Dipartimento di Informatica e Sistemistica Via Claudio, 21 I Napoli (Italy) roberto.canonico@unina.it, demma@napoli.consorzio-cini.it, giorgio.ventre@unina.it Abstract Simulation of large scale network scenarios is a challenging task and requires a great amount of computational power. Hence, realizing web-accessible simulation servers is a key step for the success of network simulation as a useful instrument in the context of network administration and capacity planning. This paper presents an XML-based description language for describing network simulation scenarios. For the proposed language, we also present an XSL translation process that can be used to automatically translate a simulation scenario into a simulation script for a well known network simulator. This work is part of a larger project, aimed at implementing a cluster-based network simulation server to be integrated in a distributed system for QoS monitoring, SLA validation and measurementbased modeling in an inter-domain environment. 1. Introduction In recent years, simulation has become an indispensable technique to evaluate the performance of communication protocols for computer networks [1]. Quite a large number of network simulators have been developed over the past decade [2, 3, 4, 5, 6, 7]. More recently, simulation has been proposed as an useful tool for network planning and what-if analysis [8, 9, 10, 11]. Packet-level simulation of large scale computer networks is a challenging task, due to the great amount of computation it requires. To overcome such a difficulty, researchers have investigated in two directions: parallelism and abstraction. Parallel simulators [12, 13] rely on multiprocessors and clusters of workstations to achieve the computation power and memory necessary to run large scale simulations. Abstraction, on the other hand, is aimed at reducing the unnecessary details of packet level simulation, in order to obtain a significant picture of the network behavior with a significant reduction of computation time [14, 15]. These two approaches are complementary, and can be exploited at the same time to scale up the potential of network simulation. The combination of analytical models with classical discrete event simulation has lead to so-called hybrid simulation techniques. In the framework of the European INTERMON Research Project [16], the authors are investigating the problem of realizing a powerful network simulation server, based on a cluster of PCs. Our simulation server can be accessed from remote users through a web based interface. This component is integrated in a more general architecture [17], aimed at providing network administrators with a powerful set of tools that can be used for capacity planning and Service Level Agreement tuning and validation. The whole INTERMON architecture relies upon a distributed database, which is updated by proper measurement tools deployed within the real network. To integrate our simulation server with the rest of the INTERMON architecture, it was necessary to define a precise service interface, so that simulation scenarios could be automatically generated from other components and submitted to the server. These reasons have motivated our work, i.e. the use of XML to describe network simulation scenarios that can be automatically translated into simulation scripts, for a variety of network simulators. The rest of this paper is organized as follows. In section 2 we describe the architecture of a network simulation server based on a cluster of PCs that provides a network simulation service that can be accessed through a web-based interface. In section 3, we describe an XML description language that we have defined to describe network simulation scenarios in a simulator-neutral way. In section 4, we present how we managed to automatically translate an XML simulation scenario into an ns-2 simulation script [6]. Finally, in section 5, we present some concluding remarks and future work. 2. A Web Based Network Simulation Server In the context of the INTERMON research project [16], we are developing a web-accessible network simulation server. Our server has been designed according to a 3-tier architecture, as illustrated in Figure 1.

2 Figure 1. A three tier network simulation server The client component of the architecture is implemented as a JAVA applet, extending the functionality of a plain web browser. This component provides the end-user with a graphical editor that allows the user to interactively create and modify the network simulation scenario. The client software also translates the network scenario in the XML-based language that we describe in the next section. The middle-tier of the architecture acts as an intermediary for the simulation back-end, formed by a cluster of Linux PCs, running the OpenMosix software [18]. This component of the architecture is responsible of user authentication and accounting. In such a middle-tier component, the XML simulation scenario is translated into a simulation-specific script. In our first implementation of the server, a JAVA servlet translates the XML document into a ns-2 simulation script. Finally, the middle tier, by exploiting the load balancing functionality offered by OpenMosix, selects the most suitable cluster node and runs the simulation on it. Simulation results are stored, in a XML format, in a proper document repository which can be asynchronously accessed by the end user. Further post-processing of simulation results can be executed by other servlets running in the middle tier component. Figure 2 shows the architecture of a prototypal simulation server implemented on a cluster of three Linux PCs. Basically, a network scenario is composed of: a description of the network topology; a description of the traffic flows that will be generated during the simulated time; a description of particular events (e.g. link failures) that need to be modeled in the course of the simulation; a description of the expected simulation output. In this section we describe the basic concepts that make a network simulation scenario. To better illustrate the logical relations among the various components of a simulation scenario, we make use of UML class diagrams. In a second step, we illustrate how a simulation scenario can be described by means of an XML document [19]. To describe the structure of such an XML document, we make use of XML Schema [20,21]. In the process of translating the UML description into an XML document, we had to face the lack of typical O-O paradigms in XML. Figure 3 illustrates the main components of a Simulation Scenario in terms of abstract classes. 3. Network simulation scenarios in XML A simulation scenario is a description of all the network components that need to be modeled when the behavior of a given network needs to be simulated. Figure 3: General Structure of a Simulation Scenario Basically, Figure 3 shows that a Simulation Scenario is made of three parts:

3 a Network Description a Traffic Description a set of Simulation Commands The Network Description is a static representation of the network topology. Hence, it is a collection of Nodes and Links. Here, the term node stands for router or endsystem. In a node, one or more instances of Network Protocol may be present. Since modeling large scale networks is usually based on network partitioning at a domain level, the most important network abstraction is the Autonomous System. Hence, at a topological level, a simulated network should be represented as a collection of interconnected Autonomous Systems. However, we also take into account the possibility of simulating small networks in which the notion of AS is not present. For these smaller networks, the network description is simply made of network nodes connected by links. Figure 4 shows the structure of a Network Description in greater detail. This picture shows that a Network Description is made of ASes, each of which is identified by its own ID. Autonomous Systems are interconnected by Links. Figure 4: UML Class Diagram for the Network Description component The internal structure of an AS is described by its AS model(s). The simplest description is by means of a Topological Model, in terms of Nodes and Links. However, an AS can also be described by other formalisms, that we call Analytical Models. All these formalisms have in common an AS Node, embedding the formal representation of the AS behavior. Figure 4 shows that the concept of AS Node is derived from a generic Node class, which can also be used to model a generic network router and/or an end-system. The Traffic Description component (Figure 5) contains the information required to describe the traffic flows that will be generated during the simulation. Each flow may be characterized by a proper Traffic Model, which can be: an analytical model, describing the stochastic properties of the traffic flow; an application model, describing the specific traffic patterns generated by well-known applications (e.g. Telnet, HTTP, FTP, ); an exact traffic trace, describing the traffic flow packet by packet. The latter part, the Simulation Command component, contains time-dependent events, such as variations in the network topology, in the routing policies, and so on. <xs:schema attributeformdefault="unqualified" elementformdefault="qualified" targetnamespace=" xmlns:xs=" <xs:include schemalocation="datatype.xsd"/> <xs:include schemalocation="protocol.xsd"/> <xs:include schemalocation="cloudmodel.xsd"/> <!-- <!-- Node Class id - Node label - Node x - Node x y - Node y protocol - Node Protocol graph Figure 5: Class ASNode Diagram - Subclass for the ASNode Traffic Description <xs:complextype component name="node"> <xs:sequence> 3.1 XML Schemas for the <xs:simpletype> proposed description language <xs:schema attributeformdefault="unqualified" <xs:element minoccurs="0" name="label"> <xs:restriction base="xs:string"> <xs:pattern value="([a-za-z](_)?)*"/> </xs:restriction> In elementformdefault="qualified" this subsection we illustrate </xs:simpletype> how we have translated the previous targetnamespace=" </xs:element> class diagrams in a XML format, that we describe xmlns:xs=" by means of XML Schemas. type="protocollist"/> Figure <xs:include 6 shows schemalocation="node.xsd"/> the format that we have defined for an <xs:include schemalocation="link.xsd"/> XMLdocument <xs:include schemalocation="as.xsd"/> describing a use="optional"/> network simulation scenario. Such <?xml <!-- a version="1.0" Schema encoding="utf-8"?> is stored a XSD file, which refers to <xs:schema <!-- NetworkDescription attributeformdefault="unqualified" Class Definition use="required"/> three elementformdefault="qualified" external description XSD - files: NetworkDescription.xsd, Traffic.xsd, as and - AS SimulationCommand.xsd. of the network node - Top level node These three link files - Top level contains <!-- link the three components of a simulation <!-- AsNode Class Definition <xs:include scenario schemalocation="networkdescription.xsd"/> that we have described above. <xs:complextype <xs:include schemalocation="traffic.xsd"/> Class Node Figure <xs:sequence> <xs:include 7 shows schemalocation="simulationcommand.xsd"/> structure model of - Analitical the Network Model of Description AS part of <xs:element a <xs:element simulation name="scenario"> name="description" scenario. Again, type="xs:string"/> this XSD document <xs:element <xs:complextype> maxoccurs="unbounded" <xs:complextype name="asnode"> minoccurs="0" name="as" refers to external type="as"/> <xs:sequence> files (e.g. <xs:complexcontent> Node.xsd, Link.xsd, AS.xsd, ) that <xs:element here we <xs:element do maxoccurs="unbounded" <xs:extension not include, name="networkdescription" for minoccurs="0" base="node"> the sake of brevity. name="node" type="networkdescription"/> type="node"/> <xs:sequence> Just to illustrate <xs:choice maxoccurs="unbounded" <xs:element how this maxoccurs="1" process minoccurs="0"> of description needs to be further refined, <xs:element name="traffic" we maxoccurs="unbounded" minoccurs="0"> present in Figure minoccurs="0" 8 the Node.xsd <xs:element maxoccurs="1" minoccurs="0" name="protocol" <xs:attribute default="router" name="type" type="nodetype" <xs:attribute name="id" type="xs:nonnegativeinteger" <xs:attribute name="x" type="xs:float" use="optional"/> <xs:attribute name="y" type="xs:float" use="optional"/> <xs:choice maxoccurs="unbounded" name="link" type="traffic"/> type="pointtopoint"/> <xs:element name="cloudmodel" <xs:element <xs:element maxoccurs="unbounded" maxoccurs="1" minoccurs="0" type="cloudmodel"/> name="multiaccess" name="simulationcommand" type="multiaccess"/> </xs:choice> </xs:choice> type="simulationcommand"/> Proceedings of the Seventh IEEE International Symposium on Distributed Simulation and Real-Time Applications </xs:extension> (DS-RT 03) </xs:complexcontent> </xs:schema> </xs:element> </xs:schema> </xs:schema> Figure 7: Network Description XML Schema Figure 6: Simulation Figure Scenario 8: Node XML Description Schema XML Schema

4 Schema, describing the format of the XML description of a simulated network node (e.g. a router or an endsystem). As illustrated in Figure 4, the Node element may be specialized into a ASNode element, describing a whole network domain. This is useful for hybrid kinds of simulation, in which a simplified analytical model is used to describe the behavior of a complex domain (such as an Autonomous System) [15]. 4. Translating an XML scenario in ns-2 simulation scripts The XSD Schemas we have presented in the previous section may be used to describe a complete simulation scenario in a simulator-independent way. Besides the XML Schemas, we have also defined a set of precise translation rules that can be used to produce a simulation script for the well known ns-2 network simulator [6], starting from an XML simulation scenario. These translation rules have been expressed by means of the XSLT transformation language [22] and have been implemented by a JAVA servlet. The XSLT transformation document has been organized in independent files, according to the structure of the Schemas presented in Section 3. Figure 9 presents the root XSLT document, which includes other XSLT documents and translates the root element of the XML simulation scenario. The XSLT files contain ns-2 specific code and translates the XML simulation scenario in a script that can be executed by a ns-2 simulator. 5. Production of XML simulation scenarios The creation and manipulation of complex network scenarios for simulation is a not trivial activity [23]. Simulation of large scale networks cannot rely on manual generation of the XML simulation scenarios. To perform this task we are currently developing a graphical tool which extends the basic functionality of the applet mentioned in Section 2. Such a tool provides users with the following features: integration of existing topology generators; localization and visualization of sets of nodes on large network topologies according to different selection criteria (e.g. mutual distance, AS identifier); instantiation of network components of any type on the nodes of a given node set; customization of network components; definition of new network components (e.g. web caches). 6. Conclusions and future work In this paper we have presented an XML description language that can be used to describe network simulation scenarios in a simulator-neutral way. Such an approach can be useful to allow interoperation of different network simulators, especially in the context of distributed network simulation. We have defined this language as a way to submit network simulation scenarios to a simulation server through a web-based component implemented as a middle-tier for a cluster of Linux PCs running the ns-2 simulator. Such a simulation server is a component of a more complex distributed system for QoS monitoring, SLA validation and measurement-based modeling in an inter-domain environment. We are currently investigating the difficulty of translating simulation scenarios formatted according to our <xsl:stylesheet version="1.0" xmlns:sce=" xmlns:xsl=" <xsl:output indent="no" method="text"/> <!-- Transform the XML Description in a ns description <xsl:template match="/"> #Code Generated by SimulationScenarioTons.xsl set ns [new Simulator] <xsl:apply-templates select="//sce:simulationcommand/sce:nsconfigurationcommand/sce:traceall"/> <!-- Transform networkdescription <xsl:apply-templates select="//sce:networkdescription"/> <!-- Translate Traffic Description <xsl:apply-templates select="//sce:traffic"/> #finish proc proc finish {} { global ns $ns flush-trace <xsl:if test="//sce:simulationcommand/sce:nsconfigurationcommand/sce:traceall/@nam='false'"> global tf close $tf </xsl:if> <xsl:if test="//sce:simulationcommand/sce:nsconfigurationcommand/sce:traceall/@nam='true'"> global nf close $nf </xsl:if> exit 0 } #Simulation Run $ns at <xsl:value-of select="//sce:simulationcommand/@stoptime"/> "finish" $ns run </xsl:template> <!-- <!-- Template for trace file definition <xsl:template match="sce:trace-all"> <xsl:choose> <xsl:when test="./@nam = 'false'"> # Trace definition set tf [open <xsl:value-of select="./@file"/> w] $ns trace-all $tf </xsl:when> <xsl:otherwise> # Nam trace definition set nf [open <xsl:value-of select="./@file"/> w] $ns namtrace-all $nf </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:include href="networkdescription.xsl"/> <xsl:include href="trafficmodel.xsl"/> </xsl:stylesheet> Figure 9: Root XSLT transformation document

5 specification in simulation scripts suitable for different network simulators. 7. Acknowledgements This work has been carried out under the financial support of the European Community in the framework of the INTERMON-IST Research Project. It has also been partially funded by MIUR, Ministero della Istruzione, dell Università e della Ricerca, in the framework of the FIRB project Middleware for advanced services over large-scale, wired-wireless distributed systems (WEB-MINDS), and of the project Scalability and Quality of Service in Web Systems. 8. References [1] L. Breslau, D. Estrin, K. Fall, S. Floyd, J. Heidemann, A. Helmy, P. Huang, S. McCanne, K. Varadhan, Y. Xu, and H. Yu. "Advances in Network Simulation". IEEE Computer, 33 (5), pp , May [2] L.S. Brakmo and L.L. Peterson. "Experiences with network simulator". In Proc. of SIGMETRICS, Philadelphia, PA, [3] OPNET - [4] SSFNet - [5] PARSEC - [6] UCB, LBLN, VINT. "The Network Simulator - ns-2" [7] S.Y. Wang and H.T. Kung. "A New Methodology for Easily Constructing Extensible and High-Fidelity TCP/IP Network Simulators". Computer Networks, Vol. 40, Issue 2, pp , [8] D. Dutta, A. Goel, J. Heidemann. "Faster Network Design with Scenario Pre-Filtering". Procs. of 10th IEEE International Symposium on Modeling, Analysis, and Simulation of Computer and Telecommunications Systems (MASCOTS'02), Fort Worth, Texas, October 11-16, [9] B.K. Szymanski, A. Bivens, Y. Liu, K. Madnani, A. Sastry. "The Genesis Project: Network Decomposition in Monitoring and Simulation for Network Management and Intrusion Detection". Procs. of Virtual Worlds and Simulation Conference, SCS Press, January [10] T. Ye, S. Kalyanaraman, D. Harrison, B. Sikdar, B. Mo, H.T. Kaur, K. Vastold, B. Szymanski. "Network Management and Control Using Collaborative On-line Simulation". Procs. of IEEE International Conference on Communications, Helsinki, Finland, June [11] V. Firoiu, I. Yeom, and X. Zhang. A framework for practical performance evaluation and traffic engineering in IP networks. Procs. of IEEE International Conference on Telecommunications, ICT 2001, June [12] M. H. Ammar, G. F. Riley, and R. M. Fujimoto. A Generic Framework for Parallelization of Network Simulations. Proceedings of 7 th International Symposium on Modeling, Analysis and Simulation of Computer and Telecommunication Systems, October [13] PADS research group at Georgia Tech. PDNS - Parallel/Distributed NS. [Online]Available: [14] P. Huang, D. Estrin, J. Heidemann. "Enabling Large-scale Simulations: Selective Abstraction Approach to The Study of Multicast Protocols". Proceedings of 6 th IEEE International Symposium on Modeling, Analysis and Simulation of Computer and Telecommunication Systems, MASCOTS 1998, July, 1998, Montreal, Canada. [15] F. Baumgartner, M. Scheidegger, T. Braun. "Enhancing Discrete Event Network Simulators with Analytical Network Cloud Models". Procs. of First International Workshop on Inter-domain Performance and Simulation, IPS 2003, Salzburg, February 20-21, [16] IST INTERMON European Research Project (IST ). [17] D. Hetzer, I. Miloucheva, U. Hofmann, J. Quittek, F. Saluta. "Integrated Information System for Inter-Domain QoS Monitoring, Modelling and Verification". EURESCOM Summit 2002, Powerful Networks for Profitable Services, Heidelberg, Germany, October [18] Moshe Bar. The openmosix Project. [Online] Available: [19] WWW Consortium (W3C). Extensible Markup Language XML Specification 1.0 (Second Edition). [Online] Available: [20] WWW Consortium (W3C). XML Schema W3C Recommendation, 2 May [Online] Available: [21] J. Roy and A. Ramanujan. XML schema language: taking XML to the next level. IT Professional, vol. 3 issue 2, March- April 2001, pp [22] WWW Consortium (W3C). XSL Transformations (XSLT) Version 1.0W3C Recommendation 16, November [Online]. Available: [23] R. Canonico, D. Emma, G. Ventre. Extended nam: an ns2- compatible network topology editor for simulation of web caching systems on large network topologies. Submitted to ESMc 2003 European Simulation and Modelling Conference, October 2003, Naples (Italy).

/// Rapport. / Testdocumentatie nieuwe versie Register producten en dienstverlening (IPDC)

/// Rapport. / Testdocumentatie nieuwe versie Register producten en dienstverlening (IPDC) /// Rapport / Testdocumentatie nieuwe versie Register producten en dienstverlening (IPDC) / Maart 2017 www.vlaanderen.be/informatievlaanderen Informatie Vlaanderen /// Aanpassingen aan de webservices Dit

More information

QosPolicyHolder:1 Erratum

QosPolicyHolder:1 Erratum Erratum Number: Document and Version: Cross References: Next sequential erratum number Effective Date: July 14, 2006 Document erratum applies to the service document QosPolicyHolder:1 This Erratum has

More information

Restricting complextypes that have mixed content

Restricting complextypes that have mixed content Restricting complextypes that have mixed content Roger L. Costello October 2012 complextype with mixed content (no attributes) Here is a complextype with mixed content:

More information

Netml A Language and Website for Collaborative Work on Networks and their Algorithms

Netml A Language and Website for Collaborative Work on Networks and their Algorithms Netml A Language and Website for Collaborative Work on Networks and their Algorithms Ron Addie, Stephen Braithwaite and Abdulla Zareer Department of Mathematics and Computing University of Southern Queensland

More information

Custom Data Access with MapObjects Java Edition

Custom Data Access with MapObjects Java Edition Custom Data Access with MapObjects Java Edition Next Generation Command and Control System (NGCCS) Tactical Operations Center (TOC) 3-D Concurrent Technologies Corporation Derek Sedlmyer James Taylor 05/24/2005

More information

Reducing the Size of Routing Tables for Large-scale Network Simulation

Reducing the Size of Routing Tables for Large-scale Network Simulation Reducing the Size of Routing Tables for Large-scale Network Simulation Akihito Hiromori, Hirozumi Yamaguchi, Keiichi Yasumoto, Teruo Higashino and Kenichi Taniguchi Graduate School of Engineering Science,

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXSHRMSG]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Level of Assurance Authentication Context Profiles for SAML 2.0

Level of Assurance Authentication Context Profiles for SAML 2.0 2 3 4 5 Level of Assurance Authentication Context Profiles for SAML 2.0 Draft 01 01 April 2008 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 Specification URIs: This

More information

TED schemas. Governance and latest updates

TED schemas. Governance and latest updates TED schemas Governance and latest updates Enric Staromiejski Torregrosa Carmelo Greco 9 October 2018 Agenda 1. Objectives 2. Scope 3. TED XSD 3.0.0 Technical harmonisation of all TED artefacts Code lists

More information

AlwaysUp Web Service API Version 11.0

AlwaysUp Web Service API Version 11.0 AlwaysUp Web Service API Version 11.0 0. Version History... 2 1. Overview... 3 2. Operations... 4 2.1. Common Topics... 4 2.1.1. Authentication... 4 2.1.2. Error Handling... 4 2.2. Get Application Status...

More information

Apache UIMA Regular Expression Annotator Documentation

Apache UIMA Regular Expression Annotator Documentation Apache UIMA Regular Expression Annotator Documentation Written and maintained by the Apache UIMA Development Community Version 2.3.1 Copyright 2006, 2011 The Apache Software Foundation License and Disclaimer.

More information

Messages are securely encrypted using HTTPS. HTTPS is the most commonly used secure method of exchanging data among web browsers.

Messages are securely encrypted using HTTPS. HTTPS is the most commonly used secure method of exchanging data among web browsers. May 6, 2009 9:39 SIF Specifications SIF Implementation Specification The SIF Implementation Specification is based on the World Wide Web Consortium (W3C) endorsed Extensible Markup Language (XML) which

More information

Data Bus Client Interface Manager Interface Control Document

Data Bus Client Interface Manager Interface Control Document SunGuide SM : Data Bus Client Interface Manager Interface Control Document SunGuide-DB-CIM-ICD-1.0.0 Prepared for: Florida Department of Transportation Traffic Engineering and Operations Office 605 Suwannee

More information

Document erratum applies to QosDevice:1. List other Erratum s or Documents that this change may apply to or have associated changes with

Document erratum applies to QosDevice:1. List other Erratum s or Documents that this change may apply to or have associated changes with Erratum Number: Document and Version: Cross References: QosDevice:1 Erratum Next sequential erratum number Effective Date: July 14, 2006 Document erratum applies to QosDevice:1 List other Erratum s or

More information

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. M.Sc. in Advanced Computer Science. Date: Tuesday 20 th May 2008.

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. M.Sc. in Advanced Computer Science. Date: Tuesday 20 th May 2008. COMP60370 Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE M.Sc. in Advanced Computer Science Semi-Structured Data and the Web Date: Tuesday 20 th May 2008 Time: 09:45 11:45 Please answer

More information

CLIENT-SIDE XML SCHEMA VALIDATION

CLIENT-SIDE XML SCHEMA VALIDATION Factonomy Ltd The University of Edinburgh Aleksejs Goremikins Henry S. Thompson CLIENT-SIDE XML SCHEMA VALIDATION Edinburgh 2011 Motivation Key gap in the integration of XML into the global Web infrastructure

More information

REDISPATCH DOCUMENT UML MODEL AND SCHEMA

REDISPATCH DOCUMENT UML MODEL AND SCHEMA 1 REDISPATCH DOCUMENT UML MODEL AND SCHEMA 2019-02-12 APPROVED DOCUMENT 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 Table of Contents 1

More information

Proposal: Codelists 1.0 April 2003

Proposal: Codelists 1.0 April 2003 Proposal: Codelists 1.0 April 2003 Proposal: Codelists / 1.0 / April 2003 1 Document Control Abstract In many cases, there is a need to use sets of pre-defined codes (such as country and currency codes)

More information

HVDC LINK DOCUMENT UML MODEL AND SCHEMA

HVDC LINK DOCUMENT UML MODEL AND SCHEMA 1 HVDC LINK DOCUMENT UML MODEL AND SCHEMA 2017-01-19 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 Table of Contents 1 Objective...

More information

! "# # $ % & ' ( ' )* ) & %*+ *

! # # $ % & ' ( ' )* ) & %*+ * !"# # # $ %&'( ' )*& %*+ %*+ text text text

More information

Oracle B2B 11g Technical Note. Technical Note: 11g_005 Attachments. Table of Contents

Oracle B2B 11g Technical Note. Technical Note: 11g_005 Attachments. Table of Contents Oracle B2B 11g Technical Note Technical Note: 11g_005 Attachments This technical note lists the attachment capabilities available in Oracle B2B Table of Contents Overview... 2 Setup for Fabric... 2 Setup

More information

Pattern/Object Markup Language (POML): A Simple XML Schema for Object Oriented Code Description

Pattern/Object Markup Language (POML): A Simple XML Schema for Object Oriented Code Description Pattern/Object Markup Language (POML): A Simple XML Schema for Object Oriented Code Description Jason McC. Smith Apr 7, 2004 Abstract Pattern/Object Markup Language (or POML) is a simple XML Schema for

More information

Oracle Enterprise Data Quality

Oracle Enterprise Data Quality Oracle Enterprise Data Quality Automated Loading and Running of Projects Version 9.0 January 2012 Copyright 2006, 2012, Oracle and/or its affiliates. All rights reserved. Oracle Enterprise Data Quality,

More information

Oracle Utilities Opower Energy Efficiency Web Portal - Classic Single Sign-On

Oracle Utilities Opower Energy Efficiency Web Portal - Classic Single Sign-On Oracle Utilities Opower Energy Efficiency Web Portal - Classic Single Sign-On Configuration Guide E84772-01 Last Update: Monday, October 09, 2017 Oracle Utilities Opower Energy Efficiency Web Portal -

More information

Introduction Syntax and Usage XML Databases Java Tutorial XML. November 5, 2008 XML

Introduction Syntax and Usage XML Databases Java Tutorial XML. November 5, 2008 XML Introduction Syntax and Usage Databases Java Tutorial November 5, 2008 Introduction Syntax and Usage Databases Java Tutorial Outline 1 Introduction 2 Syntax and Usage Syntax Well Formed and Valid Displaying

More information

CONVERTING CONCEPTUAL MODEL XUML TO XML SCHEMA

CONVERTING CONCEPTUAL MODEL XUML TO XML SCHEMA CONVERTING CONCEPTUAL MODEL XUML TO XML SCHEMA XUEMIN ZHANG School of Computer and Information Science, Hubei Engineering University, Xiaogan 432000, Hubei, China ABSTRACT As XML has become the standard

More information

User Manual. Privacy Infringement Severity. ProM Plug-in. Author: Sebastian Banescu Version: 0.1

User Manual. Privacy Infringement Severity. ProM Plug-in. Author: Sebastian Banescu Version: 0.1 User Manual Privacy Infringement Severity ProM Plug-in Author: Sebastian Banescu Version: 0.1 1 Table of Contents 1. Introduction...3 1.1 Implementation Details...3 2. Installation...3 3. Plug-in inputs...4

More information

PLANNED RESOURCE SCHEDULE DOCUMENT UML MODEL AND SCHEMA

PLANNED RESOURCE SCHEDULE DOCUMENT UML MODEL AND SCHEMA 1 PLANNED RESOURCE SCHEDULE DOCUMENT UML MODEL AND SCHEMA 2019-02-12 APPROVED DOCUMENT 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

More information

[MS-SSISPARAMS-Diff]: Integration Services Project Parameter File Format. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-SSISPARAMS-Diff]: Integration Services Project Parameter File Format. Intellectual Property Rights Notice for Open Specifications Documentation [MS-SSISPARAMS-Diff]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for

More information

Intellectual Property Rights Notice for Open Specifications Documentation

Intellectual Property Rights Notice for Open Specifications Documentation [MS-SSISPARAMS-Diff]: Intellectual Property Rights tice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats,

More information

RESOURCE SCHEDULE CONFIRMATION DOCUMENT UML MODEL AND SCHEMA

RESOURCE SCHEDULE CONFIRMATION DOCUMENT UML MODEL AND SCHEMA 1 RESOURCE SCHEDULE CONFIRMATION DOCUMENT UML MODEL AND SCHEMA 2019-02-12 APPROVED DOCUMENT 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : I10-002 Title : XML Master: Professional V2 Vendors : XML Master Version

More information

White Paper. Fabasoft Integration for Novell GroupWise. Fabasoft Folio 2017 R1 Update Rollup 1

White Paper. Fabasoft Integration for Novell GroupWise. Fabasoft Folio 2017 R1 Update Rollup 1 White Paper Fabasoft Integration for Novell GroupWise Fabasoft Folio 2017 R1 Update Rollup 1 Copyright Fabasoft R&D GmbH, Linz, Austria, 2018. All rights reserved. All hardware and software names used

More information

FIPA JXTA Discovery Middleware Specification

FIPA JXTA Discovery Middleware Specification 1 2 3 4 5 6 FOUNDATION FOR INTELLIGENT PHYSICAL AGENTS FIPA JXTA Discovery Middleware Specification 7 8 9 Document title FIPA JXTA Discovery Middleware Specification Document number Version 1.2 Document

More information

Approaches to using NEMSIS V3 Custom Elements

Approaches to using NEMSIS V3 Custom Elements NEMSIS TAC Whitepaper Approaches to using NEMSIS V3 Custom Elements Date August 17, 2011 July 31, 2013 (added section Restrictions, page 11) March 13, 2014 ( CorrelationID now reads CustomElementID as

More information

MWTM NBAPI WSDL and XSD Definitions

MWTM NBAPI WSDL and XSD Definitions APPENDIXA This appendix describes the WSDL and XSD 1 (XML Schema Definition) definitions for MWTM 6.1.4 Northbound API (NBAPI): InventoryAPI.wsdl, page A-1 EventAPI.wsdl, page A-10 ProvisionAPI.wsdl, page

More information

FIPA JXTA Discovery Middleware Specification

FIPA JXTA Discovery Middleware Specification 1 2 3 4 5 6 FOUNDATION FOR INTELLIGENT PHYSICAL AGENTS FIPA JXTA Discovery Middleware Specification 7 8 9 Document title FIPA JXTA Discovery Middleware Specification Document number PC00096A Document source

More information

MWTM 6.1 NBAPI WSDL and XSD Definitions

MWTM 6.1 NBAPI WSDL and XSD Definitions APPENDIXA This appendix describes the WSDL and XSD 1 (XML Schema Definition) definitions for MWTM 6.1 Northbound API (NBAPI): InventoryAPI.wsdl, page A-1 EventAPI.wsdl, page A-5 ProvisionAPI.wsdl, page

More information

QosPolicyHolder 1.0. For UPnP Version Date: March 10th, 2005

QosPolicyHolder 1.0. For UPnP Version Date: March 10th, 2005 QosPolicyHolder 1.0 For UPnP Version 1.0 2 Date: March 10th, 2005 This Standardized DCP has been adopted as a Standardized DCP by the Steering Committee of the UPnP Forum, pursuant to Section 2.1(c)(ii)

More information

Fall, 2005 CIS 550. Database and Information Systems Homework 5 Solutions

Fall, 2005 CIS 550. Database and Information Systems Homework 5 Solutions Fall, 2005 CIS 550 Database and Information Systems Homework 5 Solutions November 15, 2005; Due November 22, 2005 at 1:30 pm For this homework, you should test your answers using Galax., the same XQuery

More information

Extensible Markup Language Processing

Extensible Markup Language Processing CHAPTER 2 Revised: June 24, 2009, This chapter describes the Extensible Markup Language (XML) process in the Common Object Request Broker Architecture (CORBA) adapter. XML and Components Along with XML,

More information

Parallel Network Simulation under Distributed Genesis

Parallel Network Simulation under Distributed Genesis Parallel Network Simulation under Distributed Genesis Boleslaw K. Szymanski, Yu Liu and Rashim Gupta Department of Computer Science, RPI, Troy, NY 1218, USA szymansk,liuy6,guptar @cs.rpi.edu Abstract We

More information

HISTORICAL ACTIVATION DOCUMENT UML MODEL AND SCHEMA

HISTORICAL ACTIVATION DOCUMENT UML MODEL AND SCHEMA 1 HISTORICAL ACTIVATION DOCUMENT UML MODEL AND SCHEMA 2019-02-12 APPROVED DOCUMENT 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

More information

2006 Martin v. Löwis. Data-centric XML. XML Schema (Part 1)

2006 Martin v. Löwis. Data-centric XML. XML Schema (Part 1) Data-centric XML XML Schema (Part 1) Schema and DTD Disadvantages of DTD: separate, non-xml syntax very limited constraints on data types (just ID, IDREF, ) no support for sets (i.e. each element type

More information

Distributed Packet-Level Simulation for BGP Networks under Genesis

Distributed Packet-Level Simulation for BGP Networks under Genesis Distributed Packet-Level Simulation for BGP Networks under Genesis Yu Liu and Boleslaw K. Szymanski Department of Computer Science, RPI, Troy, NY 12180, USA {liuy6, szymansk}@cs.rpi.edu Abstract The complexity

More information

SWAD-Europe Deliverable 6.3a Description of prototype implementation (documentation for deliverable 6.2)

SWAD-Europe Deliverable 6.3a Description of prototype implementation (documentation for deliverable 6.2) Mon Jun 07 2004 17:07:23 Europe/Madrid SWAD-Europe Deliverable 6.3a Description of prototype implementation (documentation for deliverable 6.2) Building knowledge objects from disparate, related resources

More information

Dynamic Virtual Cluster reconfiguration for efficient IaaS provisioning

Dynamic Virtual Cluster reconfiguration for efficient IaaS provisioning Dynamic Virtual Cluster reconfiguration for efficient IaaS provisioning Vittorio Manetti, Pasquale Di Gennaro, Roberto Bifulco, Roberto Canonico, and Giorgio Ventre University of Napoli Federico II, Italy

More information

I Exam Questions Demo XML Master. Exam Questions I XML Master: Professional V2

I Exam Questions Demo   XML Master. Exam Questions I XML Master: Professional V2 XML Master Exam Questions I10-002 XML Master: Professional V2 Version:Demo 1. Select which of the following correctly describes WSDL. (WSDL 1.1) A. WSDL assumes SOAP as the message transmission form B.

More information

Configuring a WMS Feature Source

Configuring a WMS Feature Source Configuring a WMS Feature Source Overview This document describes how to specify additional configuration options for a MapGuide WMS feature source (i.e., configuring the GetMap request that is generated

More information

General Service Subscription Management Technical Specification

General Service Subscription Management Technical Specification General Service Subscription Management Technical Specification Approved Version 1.0 20 Dec 2011 Open Mobile Alliance OMA-TS-GSSM-V1_0-20111220-A OMA-TS-GSSM-V1_0-20111220-A Page 2 (32) Use of this document

More information

[MS-TMPLDISC]: Template Discovery Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-TMPLDISC]: Template Discovery Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-TMPLDISC]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

RESERVE ALLOCATION RESULT DOCUMENT UML MODEL AND SCHEMA

RESERVE ALLOCATION RESULT DOCUMENT UML MODEL AND SCHEMA 1 RESERVE ALLOCATION RESULT DOCUMENT UML MODEL AND SCHEMA 2019-02-12 APPROVED DOCUMENT 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

More information

Cisco Unity Connection Notification Interface (CUNI) API

Cisco Unity Connection Notification Interface (CUNI) API Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 2018 Cisco Systems, Inc. All rights

More information

Measuring MPLS overhead

Measuring MPLS overhead Measuring MPLS overhead A. Pescapè +*, S. P. Romano +, M. Esposito +*, S. Avallone +, G. Ventre +* * ITEM - Laboratorio Nazionale CINI per l Informatica e la Telematica Multimediali Via Diocleziano, 328

More information

Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1. September 2017

Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1. September 2017 Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1 September 2017 Copyright 1987, 2017, Oracle and/or its affiliates. All rights reserved. This software and related

More information

A framework to evaluate 5G networks for smart and fail-safe communications

A framework to evaluate 5G networks for smart and fail-safe communications A framework to evaluate 5G networks for smart and fail-safe communications in ERTMS/ETCS Roberto Canonico (*), Stefano Marrone (**), Roberto Nardone (*), and Valeria Vittorini (*) (*) Università degli

More information

Work/Studies History. Programming XML / XSD. Database

Work/Studies History. Programming XML / XSD. Database Work/Studies History 1. What was your emphasis in your bachelor s work at XXX? 2. What was the most interesting project you worked on there? 3. What is your emphasis in your master s work here at UF? 4.

More information

XML extensible Markup Language

XML extensible Markup Language extensible Markup Language Eshcar Hillel Sources: http://www.w3schools.com http://java.sun.com/webservices/jaxp/ learning/tutorial/index.html Tutorial Outline What is? syntax rules Schema Document Object

More information

Software Engineering Methods, XML extensible Markup Language. Tutorial Outline. An Example File: Note.xml XML 1

Software Engineering Methods, XML extensible Markup Language. Tutorial Outline. An Example File: Note.xml XML 1 extensible Markup Language Eshcar Hillel Sources: http://www.w3schools.com http://java.sun.com/webservices/jaxp/ learning/tutorial/index.html Tutorial Outline What is? syntax rules Schema Document Object

More information

XSLT: How Do We Use It?

XSLT: How Do We Use It? XSLT: How Do We Use It? Nancy Hallberg Nikki Massaro Kauffman 1 XSLT: Agenda Introduction & Terminology XSLT Walkthrough Client-Side XSLT/XHTML Server-Side XSLT/XHTML More Creative Server-Side XSLT 2 XSLT:

More information

TC57 Use of XML Schema. Scott Neumann. October 3, 2005

TC57 Use of XML Schema. Scott Neumann. October 3, 2005 TC57 Use of XML Schema Scott Neumann October 3, 2005 Introduction The purpose of this presentation is to respond to an action item from the last WG14 meeting regarding the use of XML Schema by WG14 and

More information

WARE: a tool for the Reverse Engineering of Web Applications

WARE: a tool for the Reverse Engineering of Web Applications WARE: a tool for the Reverse Engineering of Web Applications Anna Rita Fasolino G. A. Di Lucca, F. Pace, P. Tramontana, U. De Carlini Dipartimento di Informatica e Sistemistica University of Naples Federico

More information

X3D Unit Specification Updates Myeong Won Lee The University of Suwon

X3D Unit Specification Updates Myeong Won Lee The University of Suwon X3D Unit Specification Updates Myeong Won Lee The University of Suwon 1 Units Specification ISO_IEC_19775_1_2008_WD3_Am1_2011_04_14 PDAM in ISO progress UNIT statement Defined in Core component UNIT statements

More information

[MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification

[MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification [MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes

More information

PTS XML STANDARD GUIDELINE

PTS XML STANDARD GUIDELINE PTS XML STANDARD GUIDELINE September 2012 Turkish Medicines & Medical Devices Agency, Department of Pharmaceutical Track & Trace System Söğütözü Mahallesi 2176 Sok. No: 5 P.K.06520 Çankaya, Ankara Phone:

More information

SDMX self-learning package No. 6 Student book. XML Based Technologies Used in SDMX

SDMX self-learning package No. 6 Student book. XML Based Technologies Used in SDMX No. 6 Student book XML Based Technologies Used in SDMX Produced by Eurostat, Directorate B: Statistical Methodologies and Tools Unit B-5: Statistical Information Technologies Last update of content May

More information

The following is a sample XML code from the HCSProductCatalog.wsdl file.

The following is a sample XML code from the HCSProductCatalog.wsdl file. APPENDIXA This appendix contains sample WSDL and XSD files. It includes the following sections: HCSProductCatalog.wsdl File, page A-1 HCSProvision.xsd File, page A-27 HCSProvisionAsyncResponse.wsdl File,

More information

IMPLICIT AUCTION RESULT DOCUMENT UML MODEL AND SCHEMA

IMPLICIT AUCTION RESULT DOCUMENT UML MODEL AND SCHEMA 1 IMPLICIT AUCTION RESULT DOCUMENT UML MODEL AND SCHEMA 2018-05-08 DOCUMENT APPROVED 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 Table

More information

XML Schema. Mario Alviano A.Y. 2017/2018. University of Calabria, Italy 1 / 28

XML Schema. Mario Alviano A.Y. 2017/2018. University of Calabria, Italy 1 / 28 1 / 28 XML Schema Mario Alviano University of Calabria, Italy A.Y. 2017/2018 Outline 2 / 28 1 Introduction 2 Elements 3 Simple and complex types 4 Attributes 5 Groups and built-in 6 Import of other schemes

More information

Analysis QoS Parameters for Mobile Ad-Hoc Network Routing Protocols: Under Group Mobility Model

Analysis QoS Parameters for Mobile Ad-Hoc Network Routing Protocols: Under Group Mobility Model 2009 International Conference on Computer Engineering and Applications IPCSIT vol.2 (2011) (2011) IACSIT Press, Singapore Analysis QoS Parameters for Mobile Ad-Hoc Network Routing Protocols: Under Group

More information

CAPACITY AUCTION SPECIFICATION DOCUMENT UML MODEL AND SCHEMA

CAPACITY AUCTION SPECIFICATION DOCUMENT UML MODEL AND SCHEMA 1 CAPACITY AUCTION SPECIFICATION DOCUMENT UML MODEL AND SCHEMA 2018-05-08 DOCUMENT APPROVED 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

More information

Network Configuration Protocol

Network Configuration Protocol The (NETCONF) defines a simple mechanism through which a network device can be managed, configuration data can be retrieved, and new configuration data can be uploaded and manipulated. NETCONF uses Extensible

More information

iway iway Application System Adapter for Amdocs ClarifyCRM User s Guide Version 5 Release 5

iway iway Application System Adapter for Amdocs ClarifyCRM User s Guide Version 5 Release 5 iway iway Application System Adapter for Amdocs ClarifyCRM User s Guide Version 5 Release 5 Updated for J2EE CA 1.5 DN3501482.0305 EDA, EDA/SQL, FIDEL, FOCCALC, FOCUS, FOCUS Fusion, FOCUS Vision, Hospital-Trac,

More information

TCP Congestion Control in Wired and Wireless networks

TCP Congestion Control in Wired and Wireless networks TCP Congestion Control in Wired and Wireless networks Mohamadreza Najiminaini (mna28@cs.sfu.ca) Term Project ENSC 835 Spring 2008 Supervised by Dr. Ljiljana Trajkovic School of Engineering and Science

More information

Manage Desktop Layout

Manage Desktop Layout You can define the layout of the Finesse desktop on the Desktop Layout tab. Important Requirements, such as processor speed and RAM, for clients that access the Finesse desktop can vary. Desktops that

More information

Expires: January 15, 2005 July 17, Extensible Markup Language (XML) Formats for Representing Resource Lists draft-ietf-simple-xcap-list-usage-03

Expires: January 15, 2005 July 17, Extensible Markup Language (XML) Formats for Representing Resource Lists draft-ietf-simple-xcap-list-usage-03 SIMPLE J. Rosenberg Internet-Draft dynamicsoft Expires: January 15, 2005 July 17, 2004 Extensible Markup Language (XML) Formats for Representing Resource Lists draft-ietf-simple-xcap-list-usage-03 Status

More information

Can a language be before the first programming language?

Can a language be before the first programming language? Can a language be before the first programming language? menyhart@elte.hu ELTE IK Abstract. I would like to present a potential new language which can be used before the first programming language. We

More information

SCHEDULE DOCUMENT UML MODEL AND SCHEMA

SCHEDULE DOCUMENT UML MODEL AND SCHEMA 1 SCHEDULE DOCUMENT UML MODEL AND SCHEMA 2017-01-19 DRAFT DOCUMENT FOR APPROVAL VERSION 1.0 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

More information

LAN-WAN-LAN end-to-end Network Simulation with NS2

LAN-WAN-LAN end-to-end Network Simulation with NS2 International Journal of Applied Engineering Research ISSN 0973-4562 Volume 13, Number 17 (2018) pp 13136-13140 Research India Publications http://wwwripublicationcom LAN-WAN-LAN end-to-end Network Simulation

More information

BBPS API Sepcifications

BBPS API Sepcifications BBPS API Sepcifications v11.0 BBPS API Sepcifications v11.0 Page 1 Table of Contents 1 Bill Fetch Request 4 Sample Bill Fetch Request API 4 Bill Fetch Request Tag Details 5 Bill Fetch Request XSD 6 2 Bill

More information

TESTBEDS Paris

TESTBEDS Paris TESTBEDS 2010 - Paris Rich Internet Application Testing Using Execution Trace Data Dipartimento di Informatica e Sistemistica Università di Napoli, Federico II Naples, Italy Domenico Amalfitano Anna Rita

More information

Overview of the EU ETS Reporting Language (XETL)

Overview of the EU ETS Reporting Language (XETL) Overview of the EU ETS Reporting Language (XETL) General The EU ETS Reporting Language is an electronic ing language supporting EU ETS Monitoring, Reporting and Validation (MRV) activities such as submitting

More information

TS SIGNATURE VALIDATION REPORT

TS SIGNATURE VALIDATION REPORT TS 119 102 2 SIGNATURE VALIDATION REPORT An introduction Presented by Peter Lipp for the esignature and eseal validation workshop, Jan 10 2018 Agenda Scope Relation to EN 319 102 1 Approach Report structure

More information

[MS-MSL]: Mapping Specification Language File Format. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-MSL]: Mapping Specification Language File Format. Intellectual Property Rights Notice for Open Specifications Documentation [MS-MSL]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXWSXPROP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Behaviour of Routing Protocols of Mobile Adhoc Netwok with Increasing Number of Groups using Group Mobility Model

Behaviour of Routing Protocols of Mobile Adhoc Netwok with Increasing Number of Groups using Group Mobility Model Behaviour of Routing Protocols of Mobile Adhoc Netwok with Increasing Number of Groups using Group Mobility Model Deepak Agrawal, Brajesh Patel Department of CSE Shri Ram Institute of Technology Jabalpur,

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXWSXPROP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Validation Language. GeoConnections Victoria, BC, Canada

Validation Language. GeoConnections Victoria, BC, Canada Validation Language Submitted To: Program Manager GeoConnections Victoria, BC, Canada Submitted By: Jody Garnett Brent Owens Refractions Research Inc. Suite 400, 1207 Douglas Street Victoria, BC, V8W-2E7

More information

Markup Languages. Lecture 4. XML Schema

Markup Languages. Lecture 4. XML Schema Markup Languages Lecture 4. XML Schema Introduction to XML Schema XML Schema is an XML-based alternative to DTD. An XML schema describes the structure of an XML document. The XML Schema language is also

More information

Naming & Design Requirements (NDR)

Naming & Design Requirements (NDR) The Standards Based Integration Company Systems Integration Specialists Company, Inc. Naming & Design Requirements (NDR) CIM University San Francisco October 11, 2010 Margaret Goodrich, Manager, Systems

More information

Appendix H XML Quick Reference

Appendix H XML Quick Reference HTML Appendix H XML Quick Reference What Is XML? Extensible Markup Language (XML) is a subset of the Standard Generalized Markup Language (SGML). XML allows developers to create their own document elements

More information

XPath and XSLT. Overview. Context. Context The Basics of XPath. XPath and XSLT. Nodes Axes Expressions. Stylesheet templates Transformations

XPath and XSLT. Overview. Context. Context The Basics of XPath. XPath and XSLT. Nodes Axes Expressions. Stylesheet templates Transformations XPath and XSLT Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh spring@imap.pitt.edu http://www.sis.pitt.edu/~spring Context The Basics of XPath Nodes

More information

Design and Management of Semantic Web Services using Conceptual Model

Design and Management of Semantic Web Services using Conceptual Model Design and Management of Semantic Web Services using Conceptual Model Martin Necasky, Jaroslav Pokorny Faculty of Mathematics and Physics, Charles University, Prague, Czech Republic {martin.necasky, jaroslav.pokorny}@mff.cuni.cz

More information

Project Members: Aniket Prabhune Reenal Mahajan Mudita Singhal

Project Members: Aniket Prabhune Reenal Mahajan Mudita Singhal CS-5604 Information Storage and Retrieval Project Report Scenario/Class Diagram Synthesis (American South 2) Project Members: Aniket Prabhune (aprabhun@vt.edu) Reenal Mahajan (remahaja@vt.edu) Mudita Singhal

More information

Testing of Service Oriented Architectures A practical approach / APPENDIX V1.0

Testing of Service Oriented Architectures A practical approach / APPENDIX V1.0 Testing of Service Oriented Architectures A practical approach / APPENDIX V1.0 Schahram Dustdar, Stephan Haslinger 1 Distributed Systems Group, Vienna University of Technology dustdar@infosys.tuwien.ac.at

More information

UPDATES TO THE LRIT SYSTEM. Report of the Drafting Group

UPDATES TO THE LRIT SYSTEM. Report of the Drafting Group E SUB-COMMITTEE ON NAVIGATION, COMMUNICATIONS AND SEARCH AND RESCUE 5th session Agenda item 4 21 ebruary 2018 Original: ENGLISH DISCLAIMER As at its date of issue, this document, in whole or in part, is

More information