Grids, Logs, and the Resource Description Framework

Size: px
Start display at page:

Download "Grids, Logs, and the Resource Description Framework"

Transcription

1 Grids, Logs, and the Resource Description Framework Mark A. Holliday Department of Mathematics and Computer Science Western Carolina University Cullowhee, NC 28723, USA Mark A. Baker, Richard J. Boakes Distributed Systems Group University of Portsmouth Mercantile House, Hampshire Terrace Portsmouth, Hampshire P01 2EG, UK Abstract Logs are an important tool in evaluating grid performance. Unfortunately, the many different log formats complicate the development of log analysis tools. We propose using the Resource Description Framework (RDF) to provide a common log format for grid environments. We develop an RDF vocabulary and then use this vocabulary to define the new log format. We then illustrate by an example how a log in the new format can be created from a log in one of the formats that is widely used. 1 Introduction In order to evaluate the correctness of a grid and subsequently improve its performance and dependability (performability), its current behaviour must be known. This often requires that events and other operational parameters are recorded in logs, which can be analyzed for metrics of interest. There are many different types of events that can be recorded such as message exchange, resource utilization, latency, or simple failure and success. Moreover, even when different systems are recording the same events, those systems may be using different record formats. As a result, a large number of different log analysis tools with similar functionality have had to be developed. The different log formats and event types lead to problems beyond the mere redundancy of analysis tools; they can mask patterns. If those patterns were recognizable, incorrect operation of the grid could be detected and the performance and dependability of the grid could be improved. We argue that it is desirable to use a single common log format that is written in a language that is both expressive and already used in other environments. Such homogeneity would reduce the number of log analysis tools and allows patterns across event generation sources to be detected. The requirement for expressiveness and use in other environments implies that existing work can be leveraged and is likely to aid in analysis of the logs. Mandating that all event generation sources use the same log format is not practical. Instead an attractive, single format should be identified and translation to that format from heterogeneous log formats needs to be supported. We contend that the Resource Description Framework (RDF) [1] is a good candidate for the specification of such a common format. This paper is organized with the next section identifying some important example log formats that may be generated in a grid. The Resource Description Framework has two key components that we will need to use: the RDF Model and the RDF Schema [2]. The RDF Model is introduced in the third section and the RDF Schema is introduced in the fourth section. Our proposed procedure for generating RDF-formatted logs is introduced in the next two sections. The fifth section presents the RDF vocabulary we use. The sixth section shows how this vocabulary can be used to construct an RDF-formatted log by showing an example translation. The seventh section briefly discusses log analysis. In the last section we discuss related work, future work, and conclude. 2 Grid-Related Logging Grids, as reflected in the documents produced by the Global Grid Forum [3], are increasingly based on Web Services' technologies. The Apache Jakarta Tomcat Servlet Container [4] and the Apache Axis SOAP engine [5] are widely used in grids and in Web Services implementations. Thus, we will focus on these technologies and applications using them as examples of software to be logged. Some logs record arbitrary events and are created using general purpose log statements inserted into the code being logged (see section 2.1). Conversely, specialized event logging may be required in the recording of message exchange or to log utilizations of particular resources (e.g. CPU utilization); see section General Purpose Logging For general purpose logging both Tomcat and Axis have adopted the Apache Jakarta Commons Logging (JCL)

2 package 0[6] which defines a log Java interface. JCL provides an implementation of this interface, which is a thin wrapper that can be used in conjunction with existing logging tools. Of these other logging tools, one often used is Apache Log4J [7]. The combination of JCL and Log4J can be used for logging of web applications as well as logging events internal to Tomcat and Axis. As illustrated by Figure 1, a Log4J logging statement typically just specifies the logging level (such as warn ) and the log message (such as low fuel level ). // get a logger instance Logger logger = Logger.getLogger("org.example "); // set its level logger.setlevel(level.info); // make a log entry logger.warn("low fuel level."); Figure 1 - Example use of Log4J Log4J records extra information about each log event in addition to that provided by the author of the logging statement. The PatternLayout class of the Log4J package can be used to specify the format and content of the output describing a particular log event. Conversion Characters specified in that class identify the aspects of the log event that can be displayed. Fourteen aspects are specified, such as the priority, the time of the event (in milliseconds since the start of the application); the method name where the logging event was issued, and the message associated with the logging event. Given that Tomcat and Axis are written in Java, another approach is to use the java.util.logging package [8], available since the release of Version 1.4 of the Java Development Kit. A combination, such as JCL and Log4J, can provide logging of general events at a single site. However, web applications are typically distributed. NetLogger [8][9] can be used with Log4J and supports logging for distributed applications. t DATE: T21:30: s LVL: Information s HOST: s TGT: appended s EVNT: program.end Figure 2 - Example NetLogger record (from [9]) The NetLogger event or log record is divided into fields with each field having three parts: the typecode, the key, and the value. The typecode indicates how to interpret the value. Figure 2 shows an example NetLogger record where 's' denotes a string and 't' a timestamp. The key is a string describing the meaning of the value. The NetLogger authors have identified the need for a means of clock synchronization across the distributed sites in order to correctly merge the logs from the different sites. The Network Time Protocol (NTP) [9] [10] is the commonly used means of providing that clock synchronization. 2.2 Specialized Event Logging The stratified nature of computer systems results in log recorders of differing specializations and granularities; for example, the sending or receiving of a message between two systems could be considered a specialized event. Axis provides TCPMon for displaying the TCP packets exchanged and SOAPMon for displaying the SOAP messages exchanged [11]. Both record the same events, at differing granularities, external to of any programs that may generate, transmit, receive and use the messages. Complementally, the Web Services Interoperability Organization (WS-I) have developed two testing tools called WS-I Monitor [12] and WS-I Analyzer [13]. These tools will help ensure that Web Services implementations operate correctly, and thus, improve inter-operation between vendors. WS-I Monitor logs SOAP messages. WS-I Analyzer analyzes the logs generated by the WS-I Monitor to see if the message exchange patterns conform to the SOAP specification. Logging of specialized events extends beyond the recording of message transmission and receipt: the Discovery and Monitoring Event Description Working Group of the Global Grid Forum (GGF DAMED-WG) has defined a basic set of monitoring event descriptions called the Top 'N' Events [14]. The DAMED-WG follows the Grid Monitoring Architecture [15] in defining an event to be the smallest stand-alone unit of measurement information about grid components (usually hardware). A log record, called a sample event instance, has four parts: a timestamp, the event type, the target, and the value of the event type. Table 1 shows a subset of an example from the DAMED- WG specification [14]. Example event types are CPU load, system uptime, disk size, and ping RTT (Round Trip Time). There are six target types: host, process, disk partition, network link, software, and scheduler. Each target type has an appropriate identifier, for example, the identifier for the host target type is an IP address. Table 1 - A sample event instance for several of the DAMED-WG event types (a subset from [14]). Event Name Target Value delay.roundtrip , processor.load system.os.name Linux

3 3 RDF Model Now that we have reviewed the typically used types of logs that we want to store in a common format, we turn to the representation we recommend for that common format. As described in the RDF Primer [16], the Resource Description Framework is a language for representing information about resources in the World Wide Web. In this section we introduce the part of the Resource Description Framework called the RDF Model. The RDF Model consists of a series of statements, with each statement asserting a fact about a resource. Much like sentences in many natural languages, each statement is organized into three parts: a subject, a predicate, and an object. The subject is the resource; the predicate is the property of the resource; the object is the value of that property of that resource (see Figure 3). Figure 3 - A sentence modeled as simplified RDF. An RDF statement is represented graphically by an ellipse for a Resource. An arrow that originates at the resource represents one of its Properties. This arrow terminates at an Object, which may be another resource (again represented as an ellipse) or a literal value, represented as a rectangle. Resources and Properties are therefore generally specified by Uniform Resource Identifiers (URI) [17], while the property value can be specified by a URI or by a literal, hence the distinction between Ellipses and Boxes for the Object. The simplicity of the RDF model gives it adaptability; any concept can be modeled. For example, an RDF Model might be used to describe a resource that is identified by the URI that is a Person whose name is Rich Boakes. This description is translated into two RDF statements. The first statement is that a resource that is identified by is a Person. The second statement is that a resource that is identified by has the name Rich Boakes. Of course, an English description of an RDF statement is not sufficient. RDF supports three representations of a RDF statement: graph-based, triples, and XML. Figure 4 shows the RDF graph representation for the example we are considering. In Figure 4 the top ellipse represents a resource that is identified by the URI This resource is the subject for two statements. Figure 4 - The RDF graph representation for the example describing the Person named Rich Boakes (similar to an example in the RDF Primer [16]). An RDF statement can also be represented as a triple. As the name suggests, a triple consists of the three parts of an RDF statement (resource, property, and property value) which are shown as text each separated by white-space with a full stop terminating the line. Each field contains the identifier (URI or literal) for one of the three parts of the statement (resource, property, or property value) surrounded by brackets. Each arc in the graph representation describes a single RDF statement and thus a single triple. For example, the left hand arc in Figure 4 describes the triple: < < < As this example illustrates, URI references can be lengthy. They can be replaced by a corresponding XML qualified name (or QName), which consists of a prefix that has been assigned to a namespace URI, followed by a colon, and then a local name. There are some well-known URI prefixes such as the prefix rdf for the namespace URI and foaf for Thus, the above triple could have been written as < <rdf:type> <foaf:person>. It is also possible to serialize an RDF model as XML. RDF/XML is part of the RDF specification and is the most commonly used form for storing and communicating RDF models on the Web. The above description is only intended to provide an introduction to the RDF Model; a more comprehensive and precise description can be found in the RDF Specification [1] and the RDF Primer [16]. 4 RDF Schema As described in the RDF Primer, RDF provides a way to express simple statements about resources, using named properties and values. However, RDF user communities also need the ability to define the vocabularies (terms) they intend to use in those statements, specifically, to indicate that they are describing specific kinds or classes

4 of resources, and will use specific properties in describing those resources. [16]. In RDF, basic vocabularies can be defined using RDF Schema (RDF-S). Where vocabularies define term meanings; ontologies define how vocabulary terms are structured and related. The Web Ontology Language (OWL) builds upon the rudimentary structures provided by RDF and RDF-S and has more facilities for expressing meaning and semantics than XML, RDF, and RDF-S [18]. Using RDF-S and/or OWL, a number of ontologies have already been developed. For example, the FOAF (Friend of a Friend) schema is an RDF vocabulary that facilitates the creation of a Web of machine-readable homepages describing people, the links between them and the things they create and do. [19]. The example in Figure 5 uses the Jena [20] API which enables RDF Models to be created and manipulated in the Java language. The program creates the same RDF model that is represented graphically in Figure 4, and illustrates how an RDF schema (FOAF) is used. Each addproperty method results in the creation of a statement within the model. The call uses its first argument to define the property (the arrow) and the second argument to define that property s value (which is either a literal (box) or another resource (ellipse)). The serialization to RDF/XML is automatically done by the model.write method call at the end of the program. 5 A Logging Vocabulary and Ontology In sections 2, 3 and 4 we reviewed some of the widely used logging tools for grid and Web Services' environments; and introduced the Resource Description Framework. We now propose a specific procedure for creating RDF-formatted log files from logs that have been generated by logging software that is widely used in these environments. We define a vocabulary using RDF-S to describe the elements in this Generic Unified Log Format (GULF). The vocabulary is defined in the schema file whose address is - for brevity we assign the QName gulf. We will consider three types of originating logs: Log4J records (gulf:l4j-), NetLogger (gulf:nl-) records, and the event descriptions (the Top 'N' Event descriptions) specified by the GGF DAMED-WG (gulf:damed-). We then present an example RDF model for this common log format including a Jena program fragment for creating the RDF/XML for that model. We then illustrate how several log formats used in Web Services and the grid can be mapped to this common log format. Finally, we briefly discuss some possible opportunities for analysis of logs in this new format. This section describes the first step in our procedure, which is to define the gulf vocabulary. This vocabulary describes the components of logs that have been translated into RDF format. The gulf vocabulary consists of one class definition and several property definitions. The class describes a single log record in RDF-format. Each property represents a possible field in such a log record. Once class is defined, gulf:record, using the following triple: <gulf:record> <rdf:type> <rdfs:class>. Recall that in triple notation the first value is the resource, the second is the property, and the third is the property value. A class in RDF Schema is any resource, in this case import com.hp.hpl.jena.rdf.model.*; public class Example1 { public static void main(string[] args) { // create an empty Model Model model = ModelFactory.createDefaultModel(); // create the resources Resource rich = model.createresource(" Resource foafperson = model.createresource(" // create the properties Property rdftype = model.createproperty(" Property foafname = model.createproperty(" // add the properties rich.addproperty(rdftype, foafperson); rich.addproperty(foafname, "Rich Boakes"); } } // now write the RDF model in XML format to System.out model.write(system.out); Figure 5 A java program using the Jena API [20] to create the example model.

5 named gulf:record, which has a rdf:type property whose value is rdfs:class. Thus, in this triple we are defining the class gulf:record. We next want to specify the properties of the gulf:record class. Since this class represents a single record in a log file; a record could have come from any of the original types of logs, we use all the fields of the original logs as properties for the gulf:record class. We consider, in turn, properties arising from each of the three log sources: Log4J, NetLogger and DAMED-WG. For supporting logs generated by Log4J the gulf:record class must represent each conversion character in the PatternLayout class of Log4J (see section 2). For example, the conversion character p causes the display of the priority of the logging event. The corresponding property is defined by the triple: <gulf:l4j-eventpriority> <rdf:type> <rdf:property>. This triple illustrates how a property is defined in the RDF Schema. A property in RDF-S is any that has a property rdf:type whose value is rdf:property. Thus, in this triple we are defining a property called gulf:l4jeventpriority. Note that on its own this triple only defines that there is a property with a name; nothing is stated about the possible values it can hold, or the classes to which it relates. We were unable to find a list of the standard values for the part named key in a NetLogger field. It may be left to the person creating a particular log to decide. One that is clearly important that is not part of the Log4J properties is HOST. This is because NetLogger was designed for distributed applications where the merged logs would contain entries from different hosts. Thus we added the property gulf:nl-host to the gulf vocabulary. As discussed in Section 2, for the DAMED-WG specification of event descriptions, the Top 'N' Events, there are four properties per event (i.e. log record): timestamp, event name, target, and value. We added a triple statement for each of these properties as shown below. <gulf:damed-timestamp> <rdf:type> <rdf:property>. <gulf:damed-eventname> <rdf:type> <rdf:property>. <gulf:damed-target> <rdf:type> <rdf:property>. <gulf:damed-value> <rdf:type> <rdf:property>. So far we have used triples to describe the gulf vocabulary, which consists of one class and a number of properties. We often want to restrict the possible values that a property might have. That a value of a particular property must be an instance of a designated class or of a particular type literal is done using the rdfs:range property. The example below causes gulf:l4j-timestamp to be restricted to integer values. <gulf:l4j-timestamp> <rdfs:range> <xsd:integer>. Besides having properties to represent the fields in a log record, it is possible that we may want a property to indicate an ordering among the log records. The property gulf:l4j-next can be used in this way if it is declared using the following two triples: <gulf:l4j-next> <rdf:type> <rdf:property>. <gulf:l4j-next> <rdfs:range> <gulf:record>. These two triples declare a property and restrict it to only take as values instances of the class gulf:record. This is an unusual property compared to the other properties that we have defined since its value is not a literal. There is still much left to do. Describing the vocabulary so far does not relate the introduced properties to the introduced class. We can do that through RDF-S by using the rdfs:domain property. The rdfs:domain property is used to indicate that a particular property applies to a particular class (and only that class). For example: <gulf:l4j-timestamp> <rdfs:domain> <gulf:record>. states that the property gulf:l4j-timestamp can only occur as a property of an instance of the class gulf:record. Since all the properties that we have declared are meant to be possible fields of a log record we want to use rdfs:domain to restrict the domain of all these properties. Thus, for each property that we have defined in the gulf schema we add a triple statement similar to the one above. So far we have been describing the gulf vocabulary using triples notation. In Figure 7 we use Jena to make this conversion. In particular, we use Jena to write a Java program that has statements similar to the statements in Figure 5 to specify each RDF statement. The program then includes a model.write statement to create the RDF/XML file for gulf. 6 The Proposed Procedure At this point we have an RDF/XML file for an ontology that we can use when creating an RDF/XML file to represent the records in a particular log from one of the originating log formats (Log4J, NetLogger, or DAMED- WG). Section 6.1 shows the ontology in use, and section 6.2 describes a conversion program. 6.1 Using the Ontology The next step is to show how that an RDF model containing log statements can be created. In Figure 5, we illustrated how a Java program using the Jena framework can be used to create RDF. We now extend this example to create a model containing a single log record that uses our ontology. The program is a series of statements which specify the RDF triples. For each log record there is one RDF triple to specify the log record itself and then an RDF triple to specify the value of each property that is a field of that log record in the original log.

6 Table 2 describes a hypothetical series of DAMED-WG records that we have constructed following the description of the DAMED-WG specification [14]. It is similar to that described in Table 1, except that the timestamp field has been added. It contains three log records, so three gulf:record instances are necessary, each with four properties: timestamp, event name, target, and value. Table 2 - An example hypothetical log of records generated using the DAMED-WG specification. Timestamp Event Name Target Value 0 system.architecture Intel Pentium III 28 processor.load processor.load In Figure 6 we show the triple statements needed for creating and initializing the first of these three RDF log records. The first triple indicates that the resource gulf:rec:1 is an instance of the class gulf:record. The second triple indicates that one property of this log record is the DAMED-WG timestamp field and the value of that property for this record is the number 0. The other triples are similar. <gulf:rec:1> <rdf:type> <gulf:record>. <gulf:rec:1> <gulf:damed-timestamp> 0. <gulf:rec:1> <gulf:damed-eventname> system.architecture. <gulf:rec:1> <gulf:damed-target> <gulf:rec:1> <gulf:damedvalue> Intel Pentium III. Figure 6 - The first record of Table represented as triples. The Java program in Figure 7 uses Jena to create an RDF model containing the first record from Table A Conversion Program The job of a conversion program is to translate a log file from its initial format into an RDF model; storing the resulting model in a format that can be interchanged freely. We therefore recommend the RDF/XML serialization format. A conversion program must translate all records, or a subset of records, from their original format into RDF using the gulf ontology. This involves selecting each record in turn, extracting the portions of those records and assigning them to properties, and then writing them into the model as illustrated in Figure 7. A key issue is the generation of a unique URI for each the resource. Within a single log file, each resource can be uniquely identified using an incremental URI, however, if import com.hp.hpl.jena.rdf.model.*; public class Example2 { public static void main(string[] args) { // create an empty Model Model model = ModelFactory.createDefaultModel(); // specify the GULF namespace String gulf = " // create the properties Property gulfdamedtimestamp = model.createproperty(gulf, "damed-timestamp"); Property gulfdamedeventname = model.createproperty(gulf, "damed-eventname"); Property gulfdamedtarget = model.createproperty(gulf, "damed-target"); Property gulfdamedvalue = model.createproperty(gulf, "damed-value"); Property gulfrecord = model.createproperty(gulf, "Record"); Property rdftype = model.createproperty(" // create the resource Resource record0001 = model.createresource( "gulf:rec:1" ); // add the properties record0001.addproperty(rdftype, gulfrecord); record0001.addproperty(gulfdamedtimestamp, 0); record0001.addproperty(gulfdamedeventname, "system.architecture" ); record0001.addproperty(gulfdamedtarget, " " ); record0001.addproperty(gulfdamedvalue, "Intel Pentium III" ); //... statements for the other two log records } } // now write the RDF model in XML format to System.out model.write(system.out); Figure 7 - An example Java program using the Jena Java API [20] for creating a DAMED-WG gulf:record

7 the same base name is used for each file, then there will be a clash when records are combined. To avoid this, we recommend a naming strategy that encodes the log s original host, filename and start date into the base URI: gulf:host/path/filename:datestamp#recordnumber e.g. gulf:example.org/logs/access.log: #1 Further, if any of the logs already incorporate a unique field, it is highly recommended that this be incorporated into the URI. 7 Log Analysis The procedure described above would generate a file in RDF/XML that describes the records in a log that was created by Log4J, NetLogger, or is following the DAMED-WG specification. Having such a common log format has a number of advantages as described in Section 1. The next step is to develop log analysis tools that are designed for processing RDF and in particular files that use the gulf vocabulary. We conjecture that the work that has been undertaken developing RDF-based tools elsewhere can be leveraged to aid in the development of quality log analysis tools; and describe some of the issues which must be overcome by such tools. RDF can be an inefficient mechanism for data storage when compared to normalized databases which remove redundancy. The nature of conversions tools, when built as stand alone entities, is that they have little or no access to data that already exists in other RDF/XML files, only what exists in their temporary model, so duplicate Resources and Literals are common. Consequently significant filtering and inference capabilities are necessary within analysis programs. RDF is a machine oriented model. RDF is designed to be read and interpreted by computers, not humans; consequently an analysis tool must provide an adequate presentation, navigation and query mechanism such that logs can be properly investigated. The benefit of a common log format is that logs from disparate sources can be combined and analyzed as if they were a single recording of events. Converting data from different logs into a common format, and then combining the results is a positive first step: however, to fully realize the combination it is necessary to do more than a naïve graph merge. The masking of information described in Section 1 can begin to be overcome when more intelligent methods of graph merging are utilized, perhaps those that look for matches in string literals and combine them, or those that enable plug-in annotation engines to analyze every new statement with reference to the existing model as it is imported. In order to promote more intelligent merging it has become apparent to us that a superset of log concepts should be developed or adopted. A possible avenue of research here involves the adoption of the Semantic-Web Knowledge Organization Systems (SKOS) [21] mapping vocabulary [22] so that each property that is specific to a certain log type would then also relate to a concept in a more generic logging thesaurus. This would enable inference engines to more effectively query log graphs. 8 Conclusions This paper proposes using the Resource Description Framework to provide a common log format for logs that are generated by web applications and logs generated by the key components of Web Services' and grid environments. As shown in Section 2 there has been substantial work in developing logging for web applications and web service components. As shown in Section 3 and Section 4 there has been substantial work in developing the RDF for representing metadata. However, we are unaware of any work studying the combination of these two areas in order to use RDF for log storage and log analysis. This paper makes two contributions. First, it proposes the idea of creating logs in a common RDF format that are translations of logs from heterogeneous sources that would arise in grid and Web Services' environments. We identified some of the widely used ways of creating logs in these environments including Log4J, NetLogger, and the DAMED-WG specification. We identify several advantages from having homogeneous logs that come from all these sources, from having that common file format be RDF-based, and from having the ability to develop log analysis tools for such logs. The second contribution is to make a first attempt at developing a procedure for creating such common logs using RDF. As background we explained the key concepts in the RDF model including the three representations: graph, triples, and XML. We then explained the need and operation of RDF Schema for creating a vocabulary. The other part of the background was illustrating how a Java program can be written and used with Jena to simplify the generation of a RDF/XML file. After this background, we started the development of our proposed procedure by introducing a vocabulary, gulf. The vocabulary specification is illustrated as a series of RDF statements (shown as triples) with those statements using parts of the RDF Schema predefined vocabulary (e.g. rdfs:class) and the property rdf:type. The gulf vocabulary contains one class, Record, and a property for each field that might arise in a log record generated by Log4J, NetLogger, or by following the DAMED-WG specification. Also the possible values of those properties were restricted using rdfs:range and rdfs:domain.

8 The code for the creation of an RDF based log, using the gulf vocabulary, is specific to the particular log being translated. We illustrated this using a hypothetical (and simple) DAMED-WG. We showed the RDF statements (as triples) necessary to translate the first of the example log records. We then showed the Java code to generate those RDF statements and to generate the RDF/XML file. This paper primarily focuses on the RDF log format issues. Detailed discussion of RDF log analysis will be considered in future work. This paper starts the exploration of the issues involved in using RDF for storing and analyzing logs generated in a grid or Web Services' environments. Clearly the next step is to implement the proposed procedure. In particular, the gulf vocabulary needs to be completely stated. Then, the simple example presented of translating DAMED-WG log records into gulf RDF log records needs to be converted and generalized to be a Java Jena program that can handle an arbitrary DAMED-WG log. That translation program then needs to be extended to handle Log4J and NetLogger logs. At that point there are two possible next steps that could be explored concurrently. One step is to evaluate the usefulness of RDF-formatted log records by developing and using analysis tools that work with logs in this format. The other next step is to revisit the gulf vocabulary; either with reference to the RDF-S class structure capabilities, or to adopt the more descriptive Web Ontology language (OWL) in order to more expressively describe the structural relationships between different log formats. A final extension of the gulf vocabulary would be to include other originating log formats besides Log4J, NetLogger, and DAMED-WG. 9 Acknowledgements Our thanks to the National Science Foundation (DUE ) and the Office of the President of the University of North Carolina System for their financial support of this project. Our thanks also to Mark Baker and the Distributed Systems Group at the University of Portsmouth in England for the time Mark Holliday spent there while working on this paper. 10 References [1] W3C--Resource Description Framework, [2] W3C--RDF Schema Specification, [3] Global Grid Forum Documents, [4] Apache Jakarta Tomcat Project, [5] Apache Axis Project, [6] Short Introduction to Log4J, 2002, [7] Java Logging APIs (java.util.logging), [8] B. Tierney and D. Gunter, NetLogger: A Toolkit for Distributed System Performance Tuning and Debugging, LBNL Tech Report LBNL [9] Netlogger Toolkit, [10] Network Time Protocol (NTP), [11] Apache Axis TCP Monitor and SOAP Monitor, [12] Web Services Interoperability Organization, Monitor Tool Functional Specification, [13] Web Services Interoperability Organization, Analyzer Tool Functional Specification, [14] Global Grid Forum: Discovery and Monitoring Event Description Working Group (DAMED-WG), [15] Global Grid Forum Grid Monitoring Architecture Working Group, A Grid Monitoring Architecture, revised January 2002, [16] W3C--RDF Primer, [17] T. Berners-Lee, R. Fielding, and L. Masinter, Uniform Resource Identifiers (URI): Generic Syntax", August 1998, [18] Web Ontology Language (OWL), [19] Friend of a Friend Project, [20] Jena: A Semantic Web Framework for Java, [21] W3C Semantic Knowledge Organisation Systems, [22] W3C SKOS Mapping Specification,

RDF Resource Description Framework

RDF Resource Description Framework RDF Resource Description Framework Fulvio Corno, Laura Farinetti Politecnico di Torino Dipartimento di Automatica e Informatica e-lite Research Group http://elite.polito.it Outline RDF Design objectives

More information

Semantic Modeling with RDF. DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo

Semantic Modeling with RDF. DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo Expected Outcomes You will learn: Basic concepts related to ontologies Semantic model Semantic web Basic features of RDF and RDF

More information

Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology

Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology Hong-Linh Truong Institute for Software Science, University of Vienna, Austria truong@par.univie.ac.at Thomas Fahringer

More information

DISCOVERING RESUME INFORMATION USING LINKED DATA

DISCOVERING RESUME INFORMATION USING LINKED DATA DISCOVERING RESUME INFORMATION USING LINKED DATA Ujjal Marjit 1, Kumar Sharma 2 and Utpal Biswas 3 1 C.I.R.M, University Kalyani, Kalyani (West Bengal) India sic@klyuniv.ac.in 2 Department of Computer

More information

A Semantic web approach for e-learning platforms

A Semantic web approach for e-learning platforms A Semantic web approach for e-learning platforms Miguel B. Alves 1 1 Laboratório de Sistemas de Informação, ESTG-IPVC 4900-348 Viana do Castelo. mba@estg.ipvc.pt Abstract. When lecturers publish contents

More information

Taming Big Data Variety with Semantic Graph Databases. Evren Sirin CTO Complexible

Taming Big Data Variety with Semantic Graph Databases. Evren Sirin CTO Complexible Taming Big Data Variety with Semantic Graph Databases Evren Sirin CTO Complexible About Complexible Semantic Tech leader since 2006 (née Clark & Parsia) software, consulting W3C leadership Offices in DC

More information

Semantic Interoperability

Semantic Interoperability Ivan Herman Semantic Interoperability Olle Olsson Swedish W3C Office Swedish Institute of Computer Science (SICS) Stockholm Apr 27 2011 (2) Background Stockholm Apr 27, 2011 (2) Trends: from

More information

Evaluating Semantic Web Service Tools using the SEALS platform

Evaluating Semantic Web Service Tools using the SEALS platform Evaluating Semantic Web Service Tools using the SEALS platform Liliana Cabral 1, Ioan Toma 2 1 Knowledge Media Institute, The Open University, Milton Keynes, UK 2 STI Innsbruck, University of Innsbruck,

More information

Towards a Semantic Wiki Wiki Web

Towards a Semantic Wiki Wiki Web Towards a Semantic Wiki Wiki Web Roberto Tazzoli, Paolo Castagna, and Stefano Emilio Campanini Abstract. This article describes PlatypusWiki, an enhanced Wiki Wiki Web using technologies from the Semantic

More information

How semantic technology can help you do more with production data. Doing more with production data

How semantic technology can help you do more with production data. Doing more with production data How semantic technology can help you do more with production data Doing more with production data EPIM and Digital Energy Journal 2013-04-18 David Price, TopQuadrant London, UK dprice at topquadrant dot

More information

Combining SAWSDL, OWL DL and UDDI for Semantically Enhanced Web Service Discovery

Combining SAWSDL, OWL DL and UDDI for Semantically Enhanced Web Service Discovery Combining SAWSDL, OWL DL and UDDI for Semantically Enhanced Web Service Discovery Dimitrios Kourtesis, Iraklis Paraskakis SEERC South East European Research Centre, Greece Research centre of the University

More information

13 RDFS and SPARQL. Internet Technology. MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication.

13 RDFS and SPARQL. Internet Technology. MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication. MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication Davide Eynard nternet Technology 13 RDFS and SPARQL 2 RDF - Summary Main characteristics of RDF: Abstract syntax based

More information

Object Database on Top of the Semantic Web

Object Database on Top of the Semantic Web WSS03 Applications, Products and Services of Web-based Support Systems 97 Object Database on Top of the Semantic Web Jakub Güttner Graduate Student, Brno Univ. of Technology, Faculty of Information Technology,

More information

OSLC Primer Learning the concepts of OSLC

OSLC Primer Learning the concepts of OSLC OSLC Primer Learning the concepts of OSLC It has become commonplace that specifications are precise in their details but difficult to read and understand unless you already know the basic concepts. A good

More information

A Survey Study on Monitoring Service for Grid

A Survey Study on Monitoring Service for Grid A Survey Study on Monitoring Service for Grid Erkang You erkyou@indiana.edu ABSTRACT Grid is a distributed system that integrates heterogeneous systems into a single transparent computer, aiming to provide

More information

OWL based XML Data Integration

OWL based XML Data Integration OWL based XML Data Integration Manjula Shenoy K Manipal University CSE MIT Manipal, India K.C.Shet, PhD. N.I.T.K. CSE, Suratkal Karnataka, India U. Dinesh Acharya, PhD. ManipalUniversity CSE MIT, Manipal,

More information

Acknowledgements References 5. Conclusion and Future Works Sung Wan Kim

Acknowledgements References 5. Conclusion and Future Works Sung Wan Kim Hybrid Storage Scheme for RDF Data Management in Semantic Web Sung Wan Kim Department of Computer Information, Sahmyook College Chungryang P.O. Box118, Seoul 139-742, Korea swkim@syu.ac.kr ABSTRACT: With

More information

Semantic Web Applications

Semantic Web Applications Semantic Web Applications Graham Klyne Nine by Nine http://www.ninebynine.net/ 26 February 2004 Nine by Nine Who am I? Scientific, engineering and networked software systems architecture Motion capture,

More information

An Ontology-based e-learning System for Network Security

An Ontology-based e-learning System for Network Security An Ontology-based e-learning System for Network Security Yoshihito Takahashi, Tomomi Abiko, Eriko Negishi Sendai National College of Technology a0432@ccedu.sendai-ct.ac.jp Goichi Itabashi Graduate School

More information

Lightweight Data Integration using the WebComposition Data Grid Service

Lightweight Data Integration using the WebComposition Data Grid Service Lightweight Data Integration using the WebComposition Data Grid Service Ralph Sommermeier 1, Andreas Heil 2, Martin Gaedke 1 1 Chemnitz University of Technology, Faculty of Computer Science, Distributed

More information

OWL Ontology Translation for the Semantic Web

OWL Ontology Translation for the Semantic Web OWL Ontology Translation for the Semantic Web Luís Mota and Luís Botelho We, the Body and the Mind Research Lab ADETTI/ISCTE Av. das Forças Armadas, 1649-026 Lisboa, Portugal luis.mota@iscte.pt,luis.botelho@we-b-mind.org

More information

A generic approach for data integration using RDF, OWL and XML

A generic approach for data integration using RDF, OWL and XML A generic approach for data integration using RDF, OWL and XML Miguel A. Macias-Garcia, Victor J. Sosa-Sosa, and Ivan Lopez-Arevalo Laboratory of Information Technology (LTI) CINVESTAV-TAMAULIPAS Km 6

More information

On the Standardization of Semantic Web Services-based Network Monitoring Operations

On the Standardization of Semantic Web Services-based Network Monitoring Operations On the Standardization of Semantic Web Services-based Network Monitoring Operations ChenglingZhao^, ZihengLiu^, YanfengWang^ The Department of Information Techonlogy, HuaZhong Normal University; Wuhan,

More information

12 The Semantic Web and RDF

12 The Semantic Web and RDF MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication Davide Eynard nternet Technology 12 The Semantic Web and RDF 2 n the previous episodes... A (video) summary: Michael

More information

Logic and Reasoning in the Semantic Web (part I RDF/RDFS)

Logic and Reasoning in the Semantic Web (part I RDF/RDFS) Logic and Reasoning in the Semantic Web (part I RDF/RDFS) Fulvio Corno, Laura Farinetti Politecnico di Torino Dipartimento di Automatica e Informatica e-lite Research Group http://elite.polito.it Outline

More information

Introduction to programming

Introduction to programming Unit 1 Introduction to programming Summary Architecture of a computer Programming languages Program = objects + operations First Java program Writing, compiling, and executing a program Program errors

More information

THE SEMANTIC WEB AND IT`S APPLICATIONS

THE SEMANTIC WEB AND IT`S APPLICATIONS 15-16 September 2011, BULGARIA 1 Proceedings of the International Conference on Information Technologies (InfoTech-2011) 15-16 September 2011, Bulgaria THE SEMANTIC WEB AND IT`S APPLICATIONS Dimitar Vuldzhev

More information

LINKED DATA EXPERIENCE AT MACMILLAN Building discovery services for scientific and scholarly content on top of a semantic data model

LINKED DATA EXPERIENCE AT MACMILLAN Building discovery services for scientific and scholarly content on top of a semantic data model LINKED DATA EXPERIENCE AT MACMILLAN Building discovery services for scientific and scholarly content on top of a semantic data model 22 October 2014 Tony Hammond Michele Pasin Background About Macmillan

More information

JOURNAL OF COMPUTER SCIENCE AND ENGINEERING

JOURNAL OF COMPUTER SCIENCE AND ENGINEERING Exploration on Service Matching Methodology Based On Description Logic using Similarity Performance Parameters K.Jayasri Final Year Student IFET College of engineering nishajayasri@gmail.com R.Rajmohan

More information

Encoding Library of Congress Subject Headings in SKOS: Authority Control for the Semantic Web

Encoding Library of Congress Subject Headings in SKOS: Authority Control for the Semantic Web Encoding Library of Congress Subject Headings in SKOS: Authority Control for the Semantic Web Corey A Harper University of Oregon Libraries Tel: +1 541 346 1854 Fax:+1 541 346 3485 charper@uoregon.edu

More information

Network Graph Databases, RDF, SPARQL, and SNA

Network Graph Databases, RDF, SPARQL, and SNA Network Graph Databases, RDF, SPARQL, and SNA NoCOUG Summer Conference August 16 2012 at Chevron in San Ramon, CA David Abercrombie Data Analytics Engineer, Tapjoy david.abercrombie@tapjoy.com About me

More information

Secure Semantic Web Service Using SAML

Secure Semantic Web Service Using SAML Secure Semantic Web Service Using SAML JOO-YOUNG LEE and KI-YOUNG MOON Information Security Department Electronics and Telecommunications Research Institute 161 Gajeong-dong, Yuseong-gu, Daejeon KOREA

More information

eservices for Hospital Equipment

eservices for Hospital Equipment eservices for Hospital Equipment Merijn de Jonge 1, Wim van der Linden 1, and Rik Willems 2 1 Healthcare Systems Architecture Philips Research, The Netherlands 2 Strategy and Innovation Management/Technical

More information

Designing a Semantic Repository

Designing a Semantic Repository Designing a Semantic Repository Integrating architectures for reuse and integration Overview Cory Casanave Cory-c (at) modeldriven.org ModelDriven.org May 2007 The Semantic Metadata infrastructure will

More information

Intelligent interoperable application for employment exchange system using ontology

Intelligent interoperable application for employment exchange system using ontology 1 Webology, Volume 10, Number 2, December, 2013 Home Table of Contents Titles & Subject Index Authors Index Intelligent interoperable application for employment exchange system using ontology Kavidha Ayechetty

More information

Design and Implementation of a Semantic Web Solution for Real-time Reservoir Management

Design and Implementation of a Semantic Web Solution for Real-time Reservoir Management Design and Implementation of a Semantic Web Solution for Real-time Reservoir Management Ram Soma 2, Amol Bakshi 1, Kanwal Gupta 3, Will Da Sie 2, Viktor Prasanna 1 1 University of Southern California,

More information

Semantic Web Technology: The Foundation For Future Enterprise Systems

Semantic Web Technology: The Foundation For Future Enterprise Systems Semantic Web Technology: The Foundation For Future Enterprise Systems Abstract by Peter Okech Odhiambo The semantic web is an extension of the current web in which data and web resources is given more

More information

Defining a benchmark suite for evaluating the import of OWL Lite ontologies

Defining a benchmark suite for evaluating the import of OWL Lite ontologies UNIVERSIDAD POLITÉCNICA DE MADRID FACULTAD DE INFORMÁTICA FREE UNIVERSITY OF BOLZANO FACULTY OF COMPUTER SCIENCE EUROPEAN MASTER IN COMPUTATIONAL LOGIC MASTER THESIS Defining a benchmark suite for evaluating

More information

Introduction to Testing Webservices

Introduction to Testing Webservices Introduction to Testing Webservices Author: Vinod R Patil Abstract Internet revolutionized the way information/data is made available to general public or business partners. Web services complement this

More information

K@ A collaborative platform for knowledge management

K@ A collaborative platform for knowledge management White Paper K@ A collaborative platform for knowledge management Quinary SpA www.quinary.com via Pietrasanta 14 20141 Milano Italia t +39 02 3090 1500 f +39 02 3090 1501 Copyright 2004 Quinary SpA Index

More information

Slogger: A Profiling and Analysis System based on Semantic Web Technologies

Slogger: A Profiling and Analysis System based on Semantic Web Technologies Slogger: A Profiling and Analysis System based on Semantic Web Technologies Mark Baker School of Systems Engineering, The University of Reading, Whiteknights, Reading, Berkshire, RG6 6AY, UK Email: mark.baker.computer.org

More information

We have big data, but we need big knowledge

We have big data, but we need big knowledge We have big data, but we need big knowledge Weaving surveys into the semantic web ASC Big Data Conference September 26 th 2014 So much knowledge, so little time 1 3 takeaways What are linked data and the

More information

RDF Support in Oracle Oracle USA Inc.

RDF Support in Oracle Oracle USA Inc. RDF Support in Oracle Oracle USA Inc. 1. Introduction Resource Description Framework (RDF) is a standard for representing information that can be identified using a Universal Resource Identifier (URI).

More information

Object-Process Methodology as a basis for the Visual Semantic Web

Object-Process Methodology as a basis for the Visual Semantic Web Object-Process Methodology as a basis for the Visual Semantic Web Dov Dori Technion, Israel Institute of Technology, Haifa 32000, Israel dori@ie.technion.ac.il, and Massachusetts Institute of Technology,

More information

Data-Gov Wiki: Towards Linked Government Data

Data-Gov Wiki: Towards Linked Government Data Data-Gov Wiki: Towards Linked Government Data Li Ding 1, Dominic DiFranzo 1, Sarah Magidson 2, Deborah L. McGuinness 1, and Jim Hendler 1 1 Tetherless World Constellation Rensselaer Polytechnic Institute

More information

From Atom's to OWL ' s: The new ecology of the WWW

From Atom's to OWL ' s: The new ecology of the WWW From Atom's to OWL ' s: The new ecology of the WWW Jim Hendler Hendler@cs.umd.edu http://www.cs.umd.edu/~hendler From Atom*s to OWL s: The new ecology of the WWW Jim Hendler Hendler@cs.umd.edu http://www.cs.umd.edu/~hendler

More information

BUSINESS VALUE OF SEMANTIC TECHNOLOGY

BUSINESS VALUE OF SEMANTIC TECHNOLOGY BUSINESS VALUE OF SEMANTIC TECHNOLOGY Preliminary Findings Industry Advisory Council Emerging Technology (ET) SIG Information Sharing & Collaboration Committee July 15, 2005 Mills Davis Managing Director

More information

Graph Database Performance: An Oracle Perspective

Graph Database Performance: An Oracle Perspective Graph Database Performance: An Oracle Perspective Xavier Lopez, Ph.D. Senior Director, Product Management 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Program Agenda Broad Perspective

More information

ABSTRACT 1. INTRODUCTION. Kamil Bajda-Pawlikowski kbajda@cs.yale.edu

ABSTRACT 1. INTRODUCTION. Kamil Bajda-Pawlikowski kbajda@cs.yale.edu Kamil Bajda-Pawlikowski kbajda@cs.yale.edu Querying RDF data stored in DBMS: SPARQL to SQL Conversion Yale University technical report #1409 ABSTRACT This paper discusses the design and implementation

More information

MD Link Integration. 2013 2015 MDI Solutions Limited

MD Link Integration. 2013 2015 MDI Solutions Limited MD Link Integration 2013 2015 MDI Solutions Limited Table of Contents THE MD LINK INTEGRATION STRATEGY...3 JAVA TECHNOLOGY FOR PORTABILITY, COMPATIBILITY AND SECURITY...3 LEVERAGE XML TECHNOLOGY FOR INDUSTRY

More information

SEMANTIC WEB BASED INFERENCE MODEL FOR LARGE SCALE ONTOLOGIES FROM BIG DATA

SEMANTIC WEB BASED INFERENCE MODEL FOR LARGE SCALE ONTOLOGIES FROM BIG DATA SEMANTIC WEB BASED INFERENCE MODEL FOR LARGE SCALE ONTOLOGIES FROM BIG DATA J.RAVI RAJESH PG Scholar Rajalakshmi engineering college Thandalam, Chennai. ravirajesh.j.2013.mecse@rajalakshmi.edu.in Mrs.

More information

ONTOLOGY-BASED APPROACH TO DEVELOPMENT OF ADJUSTABLE KNOWLEDGE INTERNET PORTAL FOR SUPPORT OF RESEARCH ACTIVITIY

ONTOLOGY-BASED APPROACH TO DEVELOPMENT OF ADJUSTABLE KNOWLEDGE INTERNET PORTAL FOR SUPPORT OF RESEARCH ACTIVITIY ONTOLOGY-BASED APPROACH TO DEVELOPMENT OF ADJUSTABLE KNOWLEDGE INTERNET PORTAL FOR SUPPORT OF RESEARCH ACTIVITIY Yu. A. Zagorulko, O. I. Borovikova, S. V. Bulgakov, E. A. Sidorova 1 A.P.Ershov s Institute

More information

Position Paper: Validation of Distributed Enterprise Data is Necessary, and RIF can Help

Position Paper: Validation of Distributed Enterprise Data is Necessary, and RIF can Help Position Paper: Validation of Distributed Enterprise Data is Necessary, and RIF can Help David Schaengold Director of Business Solutions Revelytix, Inc Sept 19, 2011, Revised Oct 17, 2011 Overview Revelytix

More information

Security Issues for the Semantic Web

Security Issues for the Semantic Web Security Issues for the Semantic Web Dr. Bhavani Thuraisingham Program Director Data and Applications Security The National Science Foundation Arlington, VA On leave from The MITRE Corporation Bedford,

More information

Business Performance Management Standards

Business Performance Management Standards Business Performance Management Standards Stephen A. White, PhD. BPM Architect Business Performance Management Business performance management Taking an holistic approach, companies align strategic and

More information

A Generic Transcoding Tool for Making Web Applications Adaptive

A Generic Transcoding Tool for Making Web Applications Adaptive A Generic Transcoding Tool for Making Applications Adaptive Zoltán Fiala 1, Geert-Jan Houben 2 1 Technische Universität Dresden Mommsenstr. 13, D-01062, Dresden, Germany zoltan.fiala@inf.tu-dresden.de

More information

Visualizing RDF(S)-based Information

Visualizing RDF(S)-based Information Visualizing RDF(S)-based Information Alexandru Telea, Flavius Frasincar, Geert-Jan Houben Eindhoven University of Technology PO Box 513, NL-5600 MB Eindhoven, the Netherlands alext, flaviusf, houben @win.tue.nl

More information

Semantic Search in Portals using Ontologies

Semantic Search in Portals using Ontologies Semantic Search in Portals using Ontologies Wallace Anacleto Pinheiro Ana Maria de C. Moura Military Institute of Engineering - IME/RJ Department of Computer Engineering - Rio de Janeiro - Brazil [awallace,anamoura]@de9.ime.eb.br

More information

Semantic Stored Procedures Programming Environment and performance analysis

Semantic Stored Procedures Programming Environment and performance analysis Semantic Stored Procedures Programming Environment and performance analysis Marjan Efremov 1, Vladimir Zdraveski 2, Petar Ristoski 2, Dimitar Trajanov 2 1 Open Mind Solutions Skopje, bul. Kliment Ohridski

More information

Publishing Linked Data Requires More than Just Using a Tool

Publishing Linked Data Requires More than Just Using a Tool Publishing Linked Data Requires More than Just Using a Tool G. Atemezing 1, F. Gandon 2, G. Kepeklian 3, F. Scharffe 4, R. Troncy 1, B. Vatant 5, S. Villata 2 1 EURECOM, 2 Inria, 3 Atos Origin, 4 LIRMM,

More information

Linked Open Data A Way to Extract Knowledge from Global Datastores

Linked Open Data A Way to Extract Knowledge from Global Datastores Linked Open Data A Way to Extract Knowledge from Global Datastores Bebo White SLAC National Accelerator Laboratory HKU Expert Address 18 September 2014 Developments in science and information processing

More information

Managing enterprise applications as dynamic resources in corporate semantic webs an application scenario for semantic web services.

Managing enterprise applications as dynamic resources in corporate semantic webs an application scenario for semantic web services. Managing enterprise applications as dynamic resources in corporate semantic webs an application scenario for semantic web services. Fabien Gandon, Moussa Lo, Olivier Corby, Rose Dieng-Kuntz ACACIA in short

More information

The Ontological Approach for SIEM Data Repository

The Ontological Approach for SIEM Data Repository The Ontological Approach for SIEM Data Repository Igor Kotenko, Olga Polubelova, and Igor Saenko Laboratory of Computer Science Problems, Saint-Petersburg Institute for Information and Automation of Russian

More information

How To Understand And Understand Common Lisp

How To Understand And Understand Common Lisp Language-Oriented Programming am Beispiel Lisp Arbeitskreis Objekttechnologie Norddeutschland HAW Hamburg, 6.7.2009 Prof. Dr. Bernhard Humm Hochschule Darmstadt, FB Informatik und Capgemini sd&m Research

More information

Introduction to Web Services

Introduction to Web Services Department of Computer Science Imperial College London CERN School of Computing (icsc), 2005 Geneva, Switzerland 1 Fundamental Concepts Architectures & escience example 2 Distributed Computing Technologies

More information

Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems

Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems If company want to be competitive on global market nowadays, it have to be persistent on Internet. If we

More information

Logging in Java Applications

Logging in Java Applications Logging in Java Applications Logging provides a way to capture information about the operation of an application. Once captured, the information can be used for many purposes, but it is particularly useful

More information

ONTOLOGY-BASED MULTIMEDIA AUTHORING AND INTERFACING TOOLS 3 rd Hellenic Conference on Artificial Intelligence, Samos, Greece, 5-8 May 2004

ONTOLOGY-BASED MULTIMEDIA AUTHORING AND INTERFACING TOOLS 3 rd Hellenic Conference on Artificial Intelligence, Samos, Greece, 5-8 May 2004 ONTOLOGY-BASED MULTIMEDIA AUTHORING AND INTERFACING TOOLS 3 rd Hellenic Conference on Artificial Intelligence, Samos, Greece, 5-8 May 2004 By Aristomenis Macris (e-mail: arism@unipi.gr), University of

More information

Presentation / Interface 1.3

Presentation / Interface 1.3 W3C Recommendations Mobile Web Best Practices 1.0 Canonical XML Version 1.1 Cascading Style Sheets, level 2 (CSS2) SPARQL Query Results XML Format SPARQL Protocol for RDF SPARQL Query Language for RDF

More information

mle: Enhancing the Exploration of Mailing List Archives Through Making Semantics Explicit

mle: Enhancing the Exploration of Mailing List Archives Through Making Semantics Explicit mle: Enhancing the Exploration of Mailing List Archives Through Making Semantics Explicit Michael Hausenblas, Herwig Rehatschek Institute of Information Systems & Information Management, JOANNEUM RESEARCH

More information

A Framework for Collaborative Project Planning Using Semantic Web Technology

A Framework for Collaborative Project Planning Using Semantic Web Technology A Framework for Collaborative Project Planning Using Semantic Web Technology Lijun Shen 1 and David K.H. Chua 2 Abstract Semantic web technology has become an enabling technology for machines to automatically

More information

Fast Infoset & Fast Web Services. Paul Sandoz Staff Engineer Sun Microsystems

Fast Infoset & Fast Web Services. Paul Sandoz Staff Engineer Sun Microsystems Fast Infoset & Fast Web Services Paul Sandoz Staff Engineer Sun Microsystems New standards on the way Two new specifications will go for Consent to Last Call in Moscow Fast Infoset ITU-T Rec. X.891 ISO/IEC

More information

Semantic Knowledge Management System. Paripati Lohith Kumar. School of Information Technology

Semantic Knowledge Management System. Paripati Lohith Kumar. School of Information Technology Semantic Knowledge Management System Paripati Lohith Kumar School of Information Technology Vellore Institute of Technology University, Vellore, India. plohithkumar@hotmail.com Abstract The scholarly activities

More information

An XML Based Data Exchange Model for Power System Studies

An XML Based Data Exchange Model for Power System Studies ARI The Bulletin of the Istanbul Technical University VOLUME 54, NUMBER 2 Communicated by Sondan Durukanoğlu Feyiz An XML Based Data Exchange Model for Power System Studies Hasan Dağ Department of Electrical

More information

D5.3.2b Automatic Rigorous Testing Components

D5.3.2b Automatic Rigorous Testing Components ICT Seventh Framework Programme (ICT FP7) Grant Agreement No: 318497 Data Intensive Techniques to Boost the Real Time Performance of Global Agricultural Data Infrastructures D5.3.2b Automatic Rigorous

More information

FIPA agent based network distributed control system

FIPA agent based network distributed control system FIPA agent based network distributed control system V.Gyurjyan, D. Abbott, G. Heyes, E. Jastrzembski, C. Timmer, E. Wolin TJNAF, Newport News, VA 23606, USA A control system with the capabilities to combine

More information

Semantic Exploration of Archived Product Lifecycle Metadata under Schema and Instance Evolution

Semantic Exploration of Archived Product Lifecycle Metadata under Schema and Instance Evolution Semantic Exploration of Archived Lifecycle Metadata under Schema and Instance Evolution Jörg Brunsmann Faculty of Mathematics and Computer Science, University of Hagen, D-58097 Hagen, Germany joerg.brunsmann@fernuni-hagen.de

More information

Albert Rainer, Jürgen Dorn, Peter Hrastnik

Albert Rainer, Jürgen Dorn, Peter Hrastnik 6WUDWHJLHVIRU9LUWXDO(QWHUSULVHVXVLQJ;)RUPVDQGWKH 6HPDQWLF:HE Albert Rainer, Jürgen Dorn, Peter Hrastnik Electronic Commerce Competence Center (ec3) Donau-City-Straße 1 1220 Wien Austria albert.rainer@ec3.at

More information

technische universiteit eindhoven WIS & Engineering Geert-Jan Houben

technische universiteit eindhoven WIS & Engineering Geert-Jan Houben WIS & Engineering Geert-Jan Houben Contents Web Information System (WIS) Evolution in Web data WIS Engineering Languages for Web data XML (context only!) RDF XML Querying: XQuery (context only!) RDFS SPARQL

More information

ARC: appmosphere RDF Classes for PHP Developers

ARC: appmosphere RDF Classes for PHP Developers ARC: appmosphere RDF Classes for PHP Developers Benjamin Nowack appmosphere web applications, Kruppstr. 100, 45145 Essen, Germany bnowack@appmosphere.com Abstract. ARC is an open source collection of lightweight

More information

Training Management System for Aircraft Engineering: indexing and retrieval of Corporate Learning Object

Training Management System for Aircraft Engineering: indexing and retrieval of Corporate Learning Object Training Management System for Aircraft Engineering: indexing and retrieval of Corporate Learning Object Anne Monceaux 1, Joanna Guss 1 1 EADS-CCR, Centreda 1, 4 Avenue Didier Daurat 31700 Blagnac France

More information

Principles and Foundations of Web Services: An Holistic View (Technologies, Business Drivers, Models, Architectures and Standards)

Principles and Foundations of Web Services: An Holistic View (Technologies, Business Drivers, Models, Architectures and Standards) Principles and Foundations of Web Services: An Holistic View (Technologies, Business Drivers, Models, Architectures and Standards) Michael P. Papazoglou (INFOLAB/CRISM, Tilburg University, The Netherlands)

More information

Application of ontologies for the integration of network monitoring platforms

Application of ontologies for the integration of network monitoring platforms Application of ontologies for the integration of network monitoring platforms Jorge E. López de Vergara, Javier Aracil, Jesús Martínez, Alfredo Salvador, José Alberto Hernández Networking Research Group,

More information

Automatic Timeline Construction For Computer Forensics Purposes

Automatic Timeline Construction For Computer Forensics Purposes Automatic Timeline Construction For Computer Forensics Purposes Yoan Chabot, Aurélie Bertaux, Christophe Nicolle and Tahar Kechadi CheckSem Team, Laboratoire Le2i, UMR CNRS 6306 Faculté des sciences Mirande,

More information

T-110.5140 Network Application Frameworks and XML Web Services and WSDL 15.2.2010 Tancred Lindholm

T-110.5140 Network Application Frameworks and XML Web Services and WSDL 15.2.2010 Tancred Lindholm T-110.5140 Network Application Frameworks and XML Web Services and WSDL 15.2.2010 Tancred Lindholm Based on slides by Sasu Tarkoma and Pekka Nikander 1 of 20 Contents Short review of XML & related specs

More information

SWARD: Semantic Web Abridged Relational Databases

SWARD: Semantic Web Abridged Relational Databases SWARD: Semantic Web Abridged Relational Databases Johan Petrini and Tore Risch Department of Information Technology Uppsala University Sweden {Johan.Petrini,Tore.Risch}@it.uu.se Abstract The semantic web

More information

Documentum Developer Program

Documentum Developer Program Program Enabling Logging in DFC Applications Using the com.documentum.fc.common.dflogger class April 2003 Program 1/5 The Documentum DFC class, DfLogger is available with DFC 5.1 or higher and can only

More information

A MEDIATION LAYER FOR HETEROGENEOUS XML SCHEMAS

A MEDIATION LAYER FOR HETEROGENEOUS XML SCHEMAS A MEDIATION LAYER FOR HETEROGENEOUS XML SCHEMAS Abdelsalam Almarimi 1, Jaroslav Pokorny 2 Abstract This paper describes an approach for mediation of heterogeneous XML schemas. Such an approach is proposed

More information

Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence

Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Service Oriented Architecture SOA and Web Services John O Brien President and Executive Architect Zukeran Technologies

More information

DRUM Distributed Transactional Building Information Management

DRUM Distributed Transactional Building Information Management DRUM Distributed Transactional Building Information Management Seppo Törmä, Jyrki Oraskari, Nam Vu Hoang Distributed Systems Group Department of Computer Science and Engineering School of Science, Aalto

More information

New Generation of Social Networks Based on Semantic Web Technologies: the Importance of Social Data Portability

New Generation of Social Networks Based on Semantic Web Technologies: the Importance of Social Data Portability New Generation of Social Networks Based on Semantic Web Technologies: the Importance of Social Data Portability Liana Razmerita 1, Martynas Jusevičius 2, Rokas Firantas 2 Copenhagen Business School, Denmark

More information

An Ontology Model for Organizing Information Resources Sharing on Personal Web

An Ontology Model for Organizing Information Resources Sharing on Personal Web An Ontology Model for Organizing Information Resources Sharing on Personal Web Istiadi 1, and Azhari SN 2 1 Department of Electrical Engineering, University of Widyagama Malang, Jalan Borobudur 35, Malang

More information

Model Driven Interoperability through Semantic Annotations using SoaML and ODM

Model Driven Interoperability through Semantic Annotations using SoaML and ODM Model Driven Interoperability through Semantic Annotations using SoaML and ODM JiuCheng Xu*, ZhaoYang Bai*, Arne J.Berre*, Odd Christer Brovig** *SINTEF, Pb. 124 Blindern, NO-0314 Oslo, Norway (e-mail:

More information

TECHNICAL Reports. Discovering Links for Metadata Enrichment on Computer Science Papers. Johann Schaible, Philipp Mayr

TECHNICAL Reports. Discovering Links for Metadata Enrichment on Computer Science Papers. Johann Schaible, Philipp Mayr TECHNICAL Reports 2012 10 Discovering Links for Metadata Enrichment on Computer Science Papers Johann Schaible, Philipp Mayr kölkölölk GESIS-Technical Reports 2012 10 Discovering Links for Metadata Enrichment

More information

Storage and Retrieval of Large RDF Graph Using Hadoop and MapReduce

Storage and Retrieval of Large RDF Graph Using Hadoop and MapReduce Storage and Retrieval of Large RDF Graph Using Hadoop and MapReduce Mohammad Farhan Husain, Pankil Doshi, Latifur Khan, and Bhavani Thuraisingham University of Texas at Dallas, Dallas TX 75080, USA Abstract.

More information

Job Reference Guide. SLAMD Distributed Load Generation Engine. Version 1.8.2

Job Reference Guide. SLAMD Distributed Load Generation Engine. Version 1.8.2 Job Reference Guide SLAMD Distributed Load Generation Engine Version 1.8.2 June 2004 Contents 1. Introduction...3 2. The Utility Jobs...4 3. The LDAP Search Jobs...11 4. The LDAP Authentication Jobs...22

More information

Semantic Web & its Content Creation Process

Semantic Web & its Content Creation Process Journal of Information & Communication Technology Vol. 3, No. 2, (Fall 2009) 87-98 Semantic Web & its Content Creation Process Zia Ahmed Shaikh Institute of Business &Technology, Biztek, Pakistan Noor

More information

IBM Rational Asset Manager

IBM Rational Asset Manager Providing business intelligence for your software assets IBM Rational Asset Manager Highlights A collaborative software development asset management solution, IBM Enabling effective asset management Rational

More information

irods and Metadata survey Version 0.1 Date March Abhijeet Kodgire akodgire@indiana.edu 25th

irods and Metadata survey Version 0.1 Date March Abhijeet Kodgire akodgire@indiana.edu 25th irods and Metadata survey Version 0.1 Date 25th March Purpose Survey of Status Complete Author Abhijeet Kodgire akodgire@indiana.edu Table of Contents 1 Abstract... 3 2 Categories and Subject Descriptors...

More information

Accelerating Hadoop MapReduce Using an In-Memory Data Grid

Accelerating Hadoop MapReduce Using an In-Memory Data Grid Accelerating Hadoop MapReduce Using an In-Memory Data Grid By David L. Brinker and William L. Bain, ScaleOut Software, Inc. 2013 ScaleOut Software, Inc. 12/27/2012 H adoop has been widely embraced for

More information