Phd and Mphil Thesis Classes

Total Page:16

File Type:pdf, Size:1020Kb

Phd and Mphil Thesis Classes Enhancing XML Preservation and Workflows Viacheslav Zholudev School of Engineering and Science Jacobs University Bremen A thesis submitted for the degree of Doctor of Philosophy in Computer Science Dissertation Committee: Prof. Dr. Michael Kohlhase (supervisor) Prof. Dr. Peter Baumann Prof. Dr. Dieter Hutter Defended: 2012, July 17th To my parents... Declaration I herewith declare that I have produced this paper without the prohibited assistance of third parties and without making use of aids other than those specified; notions taken over directly or indirectly from other sources have been identified as such. This thesis has not previously been presented in identical or similar form to any other German or foreign examination board. Viacheslav Zholudev Nothing is as practical as a good theory. Kurt Lewin Abstract With the proliferation of computers and networked resources the amount of data avail- able on personal computers and on the Web is growing exponentially. Handling of data becomes more complex as the scale expands. Moreover, data collections change in place over time, so that one of the important challenges consists in supporting a life-cycle of data. In particular, relevant parts of information have to be preserved and made accessible for future retrieval. XML is a wide-spread language for encoding documents that is both machine- readable and human-readable. It plays a unique role on the Web and in other areas of digital life: publishers, libraries, warehouses, technical writers, to name a few, { all make extensive use of XML for encoding books, articles, product information, documen- tation, interchanging and transformation of data, and the extraction and aggregation of relevant pieces of information. Contemporary web services are stepping away from traditional relational data models and are moving towards semi-structured data repre- sentations and utilization of NoSQL, and, in particular, XML databases for persisting data. A considerable technological stack has been built around XML, making it even stronger as a format. The development of XML technologies specifications is a never-ending process and emerging implementations of them push the progress further. However, there are still many open problems and challenges to be addressed in the XML domain. This thesis selects a number of the unsolved ones and suggests solutions; concretely (i) Versioning support for XML, (ii) XML databases views as counterparts of relational database views, (iii) Support for XML document templating. Solving the XML versioning problem for a subset of use cases enables an XML persistence layer that tracks the history of changes and provides XML database func- tionality like querying or indexing of data. The XML database views concepts allows to abstract away from the notion of XML files and think in terms of customizable and editable abstract XML entities with origins in some XML documents. Finally, support for XML document templating facilitates separation of responsibilities while authoring XML documents. Being able to use diverse expertise of developers in different phases of document creation, in turn, optimizes the whole authoring workflow. Highlighting the practical value of this work, all the concepts described in this the- sis are implemented and integrated into the TNTBase system (http://tntbase.org/). Over the last 4 years TNTBase has been constantly utilized in a number of mainly research projects maturing by receiving feedback from its users. The main target of the TNTBase project was providing a versioned repository for the Open Mathematical Documents (OMDoc) with a strong focus on XML-related functionality. Since the v OMDoc format combines data-like aspects (axioms, theorems, examples, etc.) with document-like aspects (sections, paragraphs, etc.), the number of applications was di- verse, and therefore all the approaches have been generalized to make it possible to adapt TNTBase to other domains and XML languages. As a result, TNTBase has been deployed in multiple real-life scenarios where it has been used on a daily basis. vi Acknowledgements A lot of people have helped me to accomplish results described in this thesis. First of all I would like to thank my supervisors: my \doctor father" Michael Kohlhase has helped me in all aspects of doing a PhD research starting from elabo- rating my vision and ending with correcting my English writing. Peter Baumann and Dieter Hutter have considerably helped me with looking at my research from differ- ent perspectives and questioning research contributions that provoked more thoughts and deeper understanding of the subject. All my colleagues from the KWARC group made a considerable contribution to the development of the TNTBase system. Andrea Kohlhase, Christine Muller¨ , Normen Muller¨ , Christoph Lange, Florian Rabe, Catalin David, Deyan Ginev, Dimitar Misev, Fulya Horozal, Constantin Jucovschi, Bogdan Mat- ican shared their feedback with me and came up with great ideas for TNTBase case studies that have significantly shaped up the system and allowed me to understand what is still lacking in the XML domain. I want to thank other people with whom I had a chance to collaborate: Nikita Zhiltsov, Sebastian Graf, Alexander Holupirek, Christian Grun¨ . Immanuel Normann, a former KWARC group member and John Batemann from University of Bremen provided an opportunity to test TNTBase in the completely new environment: in the ontology field. Mihai Cirlanaru provided some TNTBase logos and pictures, whom I would like to thank as well. Erik Hennum from MarkLogic Inc. initiated the development of the XSLT/XQuery tag libraries technology (Chapter 5) by contacting me after my talk on virtual documents at the Balisage 2010 conference. The work on tag libraries has been done in collaboration with him and used in this thesis with his permission. Additionally, colleagues from DFKI, Serge Autexier, Dominik Dietrich and Dieter Hutter allowed me to extend the number of TNTBase case studies by experimenting with management of change for OMDoc documents. Considerable amount of my work involved dealing with Berkeley DB XML, and the following people from Oracle helped me a lot by sharing the expertise in the XML and XML-databases field: George Feinberg, John Snelson and Lauren Foutz. Additionally, I want to thank Andrea Kohlhase, Michael Kohlhase, Raul Cajias, Patrice Lopez, Faye Stringer, Christoph Lange, Otilia Dreglea, Niall Kelly for proof-reading my thesis. Nikolay Melnikov, Christoph Lange and Catalin David substantially sup- ported me in maintaining servers used for hosting TNTBase installations. substan- tially I received financial suport from Jacobs University Bremen, DFKI Bremen and the KWARC group, in particular, whom I would like to thank too. Apart from the \scientific” list above I would like to express my gratitude to people who gave me inspiration and made the PhD path more pleasant: Otilia Dreglea, Nikolay Melnikov, Michael Ludwig, Lech Rzedzicki and the Bremen ice-hockey team \Bremer Brigade". i ii Contents I Introduction 1 1 Introduction 3 1.1 Visions with XML: A Real World Use Case . .4 1.2 Open Challenges in XML . .7 1.3 Contribution of the Thesis . .9 1.4 Structure of this Thesis . .9 II A Versioned XML Database 11 2 An XML-enabled Repository 13 2.1 Introduction . 13 2.2 Fundamentals . 14 2.2.1 Basic Concepts . 14 2.2.2 VCS Concepts . 16 2.2.3 Operations on a Repository . 23 2.2.4 Relation between FS-trees and Repositories during a Repository Lifetime . 31 2.2.5 Data Store Repository . 34 2.3 XML-enabled Repository (XeR) . 34 2.3.1 XPath, XQuery Data Model . 34 2.3.2 Building an XML-enabled Repository . 35 2.4 Towards An XML-Enabled Repository . 36 2.4.1 Methodology and General Architecture . 36 2.4.2 A Data Store Function . 37 2.4.3 A Key-Mapping Function for Embedding X into V ........ 38 2.5 The XeR Implementation { xSVN . 39 2.5.1 What is an XML File for xSVN? . 40 2.5.2 Integration . 40 2.6 Conclusion . 43 3 Towards a Versioned XML Database 45 3.1 Introduction . 45 3.1.1 Goals . 46 iii CONTENTS 3.2 Versioned XML Database Fundamentals . 47 3.2.1 XML-enabled Repository with Metadata . 50 3.2.2 FS-Aware Versioned XML Database . 51 3.2.3 A File System for X ......................... 54 3.2.4 Summary . 58 3.3 A Versioned XML-Database Toolkit . 58 3.3.1 An XQuery Library . 59 3.3.2 xAccessor and VcsAccessor . 59 3.3.3 A VXD Interface . 62 3.4 Open Problems and Directions to Solve Them . 62 3.5 Related Work . 63 3.5.1 A Time Machine for XML . 63 3.5.2 xDB Versioning . 63 3.5.3 DeepFS . 63 3.6 Implementation { TNTBase ........................ 64 3.6.1 Consistency of TNTBase FS.................... 65 3.7 Conclusion . 66 III XML Workflows 67 4 Scripting XML Documents 71 4.1 Introduction . 71 4.1.1 Database Views . 72 4.2 Virtual Document Fundamentals . 74 4.2.1 Defining Virtual Documents . 75 4.2.2 Virtual Documents by Example . 77 4.2.3 VDoc Specifications and Operational Semantics . 79 4.2.4 VDocs as XML Database FS Entities . 83 4.2.5 VDocs as XML Database Views . 85 4.2.6 Editing Virtual Documents . 86 4.3 Integrating with an XML Database . 93 4.3.1 Embedding Node Origins . 94 4.3.2 Extending the VXD Toolkit . 94 4.3.3 Versioned Snapshots and Materializing VDocs . 95 4.3.4 VDocs and Versioning . 96 4.4 Related Work . 97 4.4.1 Drupal . 97 4.4.2 Materialized XML Views . 97 4.5 Implementation in TNTBase ........................ 98 4.6 VDoc Use Cases . 99 4.6.1 Automated Exam Generation . 99 4.6.2 Multiple Versions of Documents . 100 4.6.3 Managing Document Collections . 101 iv CONTENTS 4.6.4 Refactoring Ontologies . 102 4.6.5 Dependency Graph of Documents .
Recommended publications
  • Opening Presentation
    Mono Meeting. Miguel de Icaza [email protected] October 24, 2006 Mono, Novell and the Community. Mono would not exist without the community: • Individual contributors. • Companies using Mono. • Organizations using Mono. • Companies using parts of Mono. • Google Summer of Code. Introductions. 2 Goals of the Meeting. A chance to meet. • Most of the Novell/Mono team is here. • Many contributors are here. • Various breaks to talk. Talk to others! • Introduce yourself, ask questions. Talk to us! • Frank Rego, Mono's Product Manager is here. • Tell us what you need in Mono. • Tell us about how you use Mono. 3 Project Status Goals Originally: • Improve our development platform on Linux. As the community grew: • Expand to support Microsoft APIs. As Mono got more complete: • Provide a complete cross platform runtime. • Allow Windows developers to port to Linux. 5 Mono Stacks and Goals. MySMQySQLL//PPosstgtrgesrsess EvEovolluutitioonn# # ASP.NET Novell APIs: MMoozzillala Novell iFolder iFolder, LDAP, Identity ADO.NET ApAapchachee MMonoono DesktoGpTK#: GTK# OpNoevenlOl LfDfAiPce GCneomceil# Windows.Forms JavaJa vCa oCommpaatitbilbitiylity Google APIs Microsoft Compatibility Libraries Mono Libraries Mono Runtime (Implementation of ECMA #335) 6 Platforms, CIL, Code Generation. 7 API space Mono 1.0: July 2004 “T-Bone” Mono 1.2: November 2006 “Rump steak” Mono 1.2 bits. Reliability and C# 2.0, .NET 2.0 scalability: • Complete. • With VM support. • ZenWorks and iFolder • Some 2.0 API support. pushed Mono on the server. • IronPython works. • xsp 1.0: 8 request/second. • xsp 1.2: 250 Debugger: request/second. • x86 and x86-64 debugger. GUI • CLI-only, limited in scenarios (no xsp).
    [Show full text]
  • Metadefender Core V4.13.1
    MetaDefender Core v4.13.1 © 2018 OPSWAT, Inc. All rights reserved. OPSWAT®, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc. All other trademarks, trade names, service marks, service names, and images mentioned and/or used herein belong to their respective owners. Table of Contents About This Guide 13 Key Features of Metadefender Core 14 1. Quick Start with Metadefender Core 15 1.1. Installation 15 Operating system invariant initial steps 15 Basic setup 16 1.1.1. Configuration wizard 16 1.2. License Activation 21 1.3. Scan Files with Metadefender Core 21 2. Installing or Upgrading Metadefender Core 22 2.1. Recommended System Requirements 22 System Requirements For Server 22 Browser Requirements for the Metadefender Core Management Console 24 2.2. Installing Metadefender 25 Installation 25 Installation notes 25 2.2.1. Installing Metadefender Core using command line 26 2.2.2. Installing Metadefender Core using the Install Wizard 27 2.3. Upgrading MetaDefender Core 27 Upgrading from MetaDefender Core 3.x 27 Upgrading from MetaDefender Core 4.x 28 2.4. Metadefender Core Licensing 28 2.4.1. Activating Metadefender Licenses 28 2.4.2. Checking Your Metadefender Core License 35 2.5. Performance and Load Estimation 36 What to know before reading the results: Some factors that affect performance 36 How test results are calculated 37 Test Reports 37 Performance Report - Multi-Scanning On Linux 37 Performance Report - Multi-Scanning On Windows 41 2.6. Special installation options 46 Use RAMDISK for the tempdirectory 46 3. Configuring Metadefender Core 50 3.1. Management Console 50 3.2.
    [Show full text]
  • Manual Técnico Portal Para El Centro De Capacitación Continua De La Fica
    MANUAL TÉCNICO – PORTAL PARA EL CENTRO DE CAPACITACIÓN CONTINUA DE LA FICA MANUAL TÉCNICO PORTAL PARA EL CENTRO DE CAPACITACIÓN CONTINUA DE LA FICA INSTALACIÓN Es necesario instalar Linux Red Hat 8.0 como servidor, agregando los siguientes paquetes mínimos al momento de la instalación: Desktops: - Sistema X Window - Entorno GNOME Aplications: - Editores (Emacs, vi) - Internet gráfica Servers - Herramientas de configuración del servidor - Servidor Web - Servidor de nombres DNS (BIND) - Servidor de bases de datos - Servidor FTP - Servidor de red Development: - Herramientas de desarrollo (automake, gcc, perl, pitón y depuradores) - Desarrollo de software X (aplicaciones para X window) - Desarrollo de software de GNOME (desarrollar GTK+) System - Herramientas de administración (cuentas de usuario, gestión) - Herramientas del sistema PABLO ANDRÉS LANDETA LÓPEZ 1 UTN – FICA -EISI MANUAL TÉCNICO – PORTAL PARA EL CENTRO DE CAPACITACIÓN CONTINUA DE LA FICA - Soporte para impresión Es muy importante instalar la parte de Development, por cuanto vamos a instalar Mono desde su código fuente, y es necesario compilar las librerías utilizando por ejemplo los compiladores de C++ (gcc). Si instalamos Mono utilizando los archivos .rpm al momento de instalar las aplicaciones nos indicará las dependencias necesarias. Una vez que se tiene instalado la versión Red Hat 8.0 de Linux, e instalado la base de datos MySQL, debemos tener los instaladores (código fuente) de Mono que son los siguientes: mono-0.28.tar.gz mcs-0.28.tar.gz xsp-0.5.tar.gz Primeramente abrimos
    [Show full text]
  • Programming with Windows Forms
    A P P E N D I X A ■ ■ ■ Programming with Windows Forms Since the release of the .NET platform (circa 2001), the base class libraries have included a particular API named Windows Forms, represented primarily by the System.Windows.Forms.dll assembly. The Windows Forms toolkit provides the types necessary to build desktop graphical user interfaces (GUIs), create custom controls, manage resources (e.g., string tables and icons), and perform other desktop- centric programming tasks. In addition, a separate API named GDI+ (represented by the System.Drawing.dll assembly) provides additional types that allow programmers to generate 2D graphics, interact with networked printers, and manipulate image data. The Windows Forms (and GDI+) APIs remain alive and well within the .NET 4.0 platform, and they will exist within the base class library for quite some time (arguably forever). However, Microsoft has shipped a brand new GUI toolkit called Windows Presentation Foundation (WPF) since the release of .NET 3.0. As you saw in Chapters 27-31, WPF provides a massive amount of horsepower that you can use to build bleeding-edge user interfaces, and it has become the preferred desktop API for today’s .NET graphical user interfaces. The point of this appendix, however, is to provide a tour of the traditional Windows Forms API. One reason it is helpful to understand the original programming model: you can find many existing Windows Forms applications out there that will need to be maintained for some time to come. Also, many desktop GUIs simply might not require the horsepower offered by WPF.
    [Show full text]
  • Practical Migration to Linux on System Z
    Front cover Practical Migration to Linux on System z Overview and migration methodology Migration analysis Hands-on migration case study Lydia Parziale Joseph Apuzzo Saulo Augusto M Martins da Silva Louis Henderson Manoj Srinivasan Pattabhiraman Richard Sewell ibm.com/redbooks International Technical Support Organization Practical Migration to Linux on System z October 2009 SG24-7727-00 Note: Before using this information and the product it supports, read the information in “Notices” on page xi. First Edition (October 2009) This edition applies to z/VM Version 5.3 and Version 5.4, Novell SUSE Linux Enterprise Server Version 10 and Version 11, and Red Hat Enterprise Linux Version 5.3. © Copyright International Business Machines Corporation 2009. All rights reserved. Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Notices . xi Trademarks . xii Preface . xv The team who wrote this book . xv Become a published author . xviii Comments welcome. xviii Part 1. Overview and migration methodology . 1 Chapter 1. Migration considerations . 3 1.1 Reason to migrate systems. 4 1.1.1 How green is your data center . 4 1.1.2 The IBM Big Green server consolidation . 7 1.2 Benefits of migrating to Linux on System z . 7 1.3 Reasons to select Linux on System z . 9 1.3.1 System z strengths . 10 1.3.2 Value of Linux on System z. 12 1.3.3 Choosing workloads to migrate to IBM System z . 13 1.4 z/VM virtualization for Linux on IBM System z .
    [Show full text]
  • Operations & Installation Guide: HD-XSP
    Crestron HD-XSP 7.1 High-Definition Professional Surround Sound Processor Operations & Installation Guide Important Safety Instructions • Read these instructions. WARNING: • Keep these instructions. • Heed all warnings. TO REDUCE THE RISK OF FIRE OR ELECTRIC SHOCK, DO NOT EXPOSE THIS APPARATUS TO RAIN OR • Follow all instructions. MOISTURE. THE APPARATUS SHALL NOT BE EXPOSED • Do not use this apparatus near water. TO DRIPPING OR SPLASHING. OBJECTS FILLED WITH • Clean only with dry cloth. LIQUIDS, SUCH AS VASES, SHOULD NOT BE PLACED • Do not block any ventilation openings. Install in accordance ON THE APPARATUS. with the manufacturer's instructions. WARNING: • Do not install near any heat sources such as radiators, heat registers, stoves, or other apparatus (including amplifiers) TO PREVENT ELECTRIC SHOCK, DO NOT REMOVE that produce heat. COVER. THERE ARE NO USER SERVICEABLE PARTS • Do not defeat the safety purpose of the polarized or INSIDE. ONLY QUALIFIED SERVICE PERSONNEL grounding-type plug. A polarized plug has two blades with SHOULD PERFORM SERVICE. one wider than the other. A grounding-type plug has two blades and a third grounding prong. The wide blade or the third prong are provided for your safety. If the provided plug does not fit into your outlet, consult an electrician for replacement of the obsolete outlet. • Protect the power cord from being walked on or pinched The lightning flash with arrowhead symbol, within an particularly at plugs, convenience receptacles, and the point equilateral triangle, is intended to alert the user to the where they exit from the apparatus. presence of uninsulated “dangerous voltage” within the product's enclosure t hat may be of sufficient magnitude • Only use attachments/accessories specified by the to constitute a risk of electric shock to persons.
    [Show full text]
  • Metadefender Core V4.17.3
    MetaDefender Core v4.17.3 © 2020 OPSWAT, Inc. All rights reserved. OPSWAT®, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc. All other trademarks, trade names, service marks, service names, and images mentioned and/or used herein belong to their respective owners. Table of Contents About This Guide 13 Key Features of MetaDefender Core 14 1. Quick Start with MetaDefender Core 15 1.1. Installation 15 Operating system invariant initial steps 15 Basic setup 16 1.1.1. Configuration wizard 16 1.2. License Activation 21 1.3. Process Files with MetaDefender Core 21 2. Installing or Upgrading MetaDefender Core 22 2.1. Recommended System Configuration 22 Microsoft Windows Deployments 22 Unix Based Deployments 24 Data Retention 26 Custom Engines 27 Browser Requirements for the Metadefender Core Management Console 27 2.2. Installing MetaDefender 27 Installation 27 Installation notes 27 2.2.1. Installing Metadefender Core using command line 28 2.2.2. Installing Metadefender Core using the Install Wizard 31 2.3. Upgrading MetaDefender Core 31 Upgrading from MetaDefender Core 3.x 31 Upgrading from MetaDefender Core 4.x 31 2.4. MetaDefender Core Licensing 32 2.4.1. Activating Metadefender Licenses 32 2.4.2. Checking Your Metadefender Core License 37 2.5. Performance and Load Estimation 38 What to know before reading the results: Some factors that affect performance 38 How test results are calculated 39 Test Reports 39 Performance Report - Multi-Scanning On Linux 39 Performance Report - Multi-Scanning On Windows 43 2.6. Special installation options 46 Use RAMDISK for the tempdirectory 46 3.
    [Show full text]
  • "Desarrollo De Una Aplicación Y Web De Administración Para Periódico
    DOCUMENTO 5 Escuela Politécnica de Cuenca Graduado en Ingeniería de Sistemas Audiovisuales de Telecomunicación Trabajo Fin de Grado Campus Universitario | 16071 Cuenca | Telf.: (+34) 969 179 100 (+34) 902 204 100 | Fax.: (+34) 969 179 119 www.epc.uclm.es | [email protected] ÍNDICE ÍNDICE ÍNDICE DE FIGURAS .................................................................................. 13 MEMORIA ....................................................................................................... 19 CAPÍTULO 1.INTRODUCCIÓN ................................................................ 21 1.1 Motivación .......................................................................................... 22 1.2 Objetivos ............................................................................................. 23 1.3 Estructura de la memoria ............................................................ 23 CAPÍTULO 2. DESARROLLO DE UNA APLICACIÓN Y ADMINISTRACIÓN WEB PARA PERIÓDICO DIGITAL DIRIGIDA A MÓVILES CON SISTEMA OPERATIVO ANDROID ............................ 25 2.1 ¿Qué es Periódico Dial? ............................................................... 26 Otros periódicos digitales ........................................................ 27 2.2 Periódico Dial .................................................................................. 29 CAPÍTULO 3. DESARROLLO DE APLICACIÓN PERIÓDICO DIAL PARA SISTEMA OPERATIVO ANDROID .................................................. 31 3.1 Estado del arte en Android ........................................................
    [Show full text]
  • Red Teaming Toolkit Collection
    Red Teaming Toolkit Collection Generated By 0xsp.com Red Teaming/Adversary Simulation Toolkit [√] please join our telegram channel Telegram Channel Reconnaissance Active Intelligence Gathering EyeWitness is designed to take screenshots of websites, provide some server header info, and identify default credentials if possible. https://github.com/ChrisTruncer/EyeWitness AWSBucketDump is a tool to quickly enumerate AWS S3 buckets to look for loot. https://github.com/jordanpotti/AWSBucketDump AQUATONE is a set of tools for performing reconnaissance on domain names. https://github.com/michenriksen/aquatone spoofcheck a program that checks if a domain can be spoofed from. The program checks SPF and DMARC records for weak configurations that allow spoofing. https://github.com/BishopFox/spoofcheck Nmap is used to discover hosts and services on a computer network, thus building a "map" of the network. https://github.com/nmap/nmap dnsrecon a tool DNS Enumeration Script. https://github.com/darkoperator/dnsrecon Passive Intelligence Gathering Social Mapper OSINT Social Media Mapping Tool, takes a list of names & images (or LinkedIn company name) and performs automated target searching on a huge scale across multiple social media sites. Not restricted by APIs as it instruments a browser using Selenium. Outputs reports to aid in correlating targets across sites. https://github.com/SpiderLabs/social_mapper skiptracer OSINT scraping framework, utilizes some basic python webscraping (BeautifulSoup) of PII paywall sites to compile passive information on a target on a ramen noodle budget. https://github.com/xillwillx/skiptracer ScrapedIn a tool to scrape LinkedIn without API restrictions for data reconnaissance. https://github.com/dchrastil/ScrapedIn linkScrape A LinkedIn user/company enumeration tool.
    [Show full text]
  • A .NET-Based Cross-Platform Software for Desktop Grids Alireza Poshtkohi
    313 DotGrid: a .NET-based cross-platform software for desktop grids Alireza Poshtkohi* Department of Electrical Engineering Qazvin Azad University Daneshgah St., P.O. Box 34185–1416, Qazvin, Iran E-mail: [email protected] *Corresponding author Ali Haj Abutalebi and Shaahin Hessabi Department of Computer Engineering Sharif University of Technology Azadi St., P.O. Box 11365–8639, Tehran, Iran E-mail: [email protected] E-mail: [email protected] Abstract: Grid infrastructures that have provided wide integrated use of resources are becoming the de facto computing platform for solving large-scale problems in science, engineering and commerce. In this evolution, desktop grid technologies allow the grid communities to exploit the idle cycles of pervasive desktop PC systems to increase the available computing power. In this paper we present DotGrid, a cross-platform grid software. DotGrid is the first comprehensive desktop grid software utilising Microsoft’s .NET Framework in Windows-based environments and MONO .NET in Unix-class operating systems to operate. Using DotGrid services and APIs, grid desktop middleware and applications can be implemented conveniently. We evaluated our DotGrid’s performance by implementing a set of grid-based applications. Keywords: desktop grids; grid computing; cross-platform grid software. Reference to this paper should be made as follows: Poshtkohi, A., Abutalebi, A.H. and Hessabi, S. (2007) ‘DotGrid: a .NET-based cross-platform software for desktop grids’, Int. J. Web and Grid Services, Vol. 3, No. 3, pp.313–332. Biographical notes: Alireza Poshtkohi received his BSc degree in Electrical Engineering from the Islamic Azad University of Qazvin, Qazvin, Iran in 2006.
    [Show full text]
  • Brava!® Enterprise 7.0
    Brava!® Enterprise 7.0 ACTIVEX CLIENT USER GUIDE LAST UPDATED, FRIDAY, APRIL 22, 2011 Table Of Contents Help Contents ............................................................................................................................ 5 New Features in this Release .................................................................................................... 5 Feature Availability ................................................................................................................... 8 What is CSF?.............................................................................................................................. 8 Why CSF? ................................................................................................................................ 10 All Toolbars.............................................................................................................................. 11 Viewing Tools .......................................................................................................................... 13 Display Tools................................................................................................................................. 13 View Tools ................................................................................................................................ 13 Display Color ............................................................................................................................. 14 Visible Layers ...........................................................................................................................
    [Show full text]
  • Interoperability Between MS-Windows, Other Operating
    Interoperability between MS-Windows, Other Operating Systems And Linux Presentation Agenda • Background about Interoperability • Problems with Interoperability • Introduction and .NET framework • Programming world – Basics • Introduction to Mono and DotGNU • Features of mono • Installation of mono on Windows • Installation of mono on Linux • Mono supported Architectures • Mono and DotGNU comparison Background Need => Platform specific software such as; Client Server / Desktop Applications Web Applications Standalone applications Networking Application services Standards Need to work smoothly on multiple platforms History of Interoperability => Wine Samba LDAP POSIX Cygwin- Linux like environment on windows making it possible to port software running on POSIX such as Unix, BSD to windows Virtualmachines/ coLinux TheThe ProblemProblem ofof CrossCross--PlatformPlatform PortabilityPortability Ever since different processor architectures and different operating systems were developed, there have been problems with transporting software to different platforms due to: • Differing processor instruction sets • Differing system kernels and low-level libraries • Differing programming languages, call sequences • Differing binary and text formats for storing and transporting data and instructions • Differing company and academic agendas • The list goes on and on and on Introduction 2002 Microsoft launched new system for platform independent development called “.Net (Dotnet) framework “ Microsoft has discontinued support for its previous favorite, the MFC library for Visual C++. All future Microsoft products will be based on the new technology. Aim : To Simplify development of network and Internet applications To support multiple languages with Unique Class libraries Future: Despite the platform-independent approach of the .NET framework, Microsoft is highly unlikely to release a Linux implementation, and this lack of Linux support has prompted two projects to fill the gap MONO and DotGNU Introduction contd.
    [Show full text]