Leitungs-WS. Speziell : Trinkwasserversorgung. Gruppe 7: Stefan Buchholz, Martin Hoffmann, Conrad Kobsch, Jörg Winkler

Size: px
Start display at page:

Download "Leitungs-WS. Speziell : Trinkwasserversorgung. Gruppe 7: Stefan Buchholz, Martin Hoffmann, Conrad Kobsch, Jörg Winkler"

Transcription

1 Leitungs-WS Speziell : Trinkwasserversorgung Gruppe 7: Stefan Buchholz, Martin Hoffmann, Conrad Kobsch, Jörg Winkler Projektübersicht... 2 Allgemeines... 2 Funktionen... 2 Operationen für WebService... 3 WSDL-Entwurf... 4 Typen... 4 Messages... 6 PortType... 7 Binding... 7 Service...8

2 Projektübersicht Allgemeines Unser WebService baut auf dem Informationssystem aus der Vorlesung Informationssysteme des letzten Semesters auf. Dabei handelt es sich um eine Umsetzung einer Leitungs- und Kundenverwaltung für kommunale Versorger. Speziell geht es um eine Trinkwasserversorgung, die allerdings nur eine grobe Abbildung der Wirklichkeit darstellt. Funktionen Netzverwaltung Es können Leitungen, Knoten, Anschlüsse angelegt und bearbeitet werden Kundenverwaltung Kunden werden verwaltet und können selber Zählerstände anschauen und so Preisberechnungen tätigen Reparaturverwaltung Es können Störungen am Netz eingetragen und bearbeitet werden. Accountverwaltung Anlegen und ändern der Accounts. Benutzergruppen: Kunde, Sachbearbeiter, Techniker, Administrator 2

3 Operationen für WebService Methode IN OUT getanschluesse Login, Passwort (String) 0..n Anschluss getzaehlerstaende Login, Passwort (String), 0..n Zaehlerstand AnschlussID (long) getstoerung Login, Passwort (String), 0..n Reparatur ObjektID (long) getobjekte Login, Passwort (String), x, y, dx, dy (double) 1 ObjektVektor (Leitungen, Knoten, Anschlüsse) getnetz Login, Passwort (String), 1 Grafik x, y, dx, dy (double) setzaehlerstand Login, Passwort (String), 1 ZaehlerID AnschlussID (long), Zaehlerstand (double) setstoerung Login, Passwort (String), Reparatur (Reparatur), Zustand (int) 1 ReparaturID 3

4 WSDL-Entwurf <definitions xmlns=" xmlns:xsd=" xmlns:soap=" xmlns:tns=" xmlns:ns1=" targetnamespace=" name="leitungswebservice"> Typen <types> <schema targetnamespace=" xmlns=" xmlns:soap-enc=" <complextype name="arrayofleitungsis_anschluss" xmlns:wsdl=" <attribute ref="soap-enc:arraytype" wsdl:arraytype="ns1:leitungsis_anschluss[]"/> <complextype name="leitungsis_anschluss" jdev:packagename="leitungsis" <element name="adressid" type="long"/> <element name="anschlussid" type="long"/> <element name="knotenid" type="long"/> <element name="typ" type="string"/> <element name="naechsteablesung" type="datetime"/> <element name="xkoordinate" type="double"/> <element name="ykoordinate" type="double"/> <element name="tiefe" type="double"/> <element name="offen" type="boolean"/> <element name="objektid" type="long"/> <element name="name" type="string"/> <element name="beschreibung" type="string"/> <element name="zustand" type="int"/> <complextype name="leitungsis_objektvektor" jdev:packagename="leitungsis" <element name="leitung" type="ns1:arrayofleitungsis_leitung"/> <element name="knoten" type="ns1:arrayofleitungsis_knoten"/> <element name="anschluss" type="ns1:arrayofleitungsis_anschluss"/> <complextype name="leitungsis_leitung" jdev:packagename="leitungsis" <element name="typ" type="string"/> <element name="durchmesser" type="string"/> <element name="durchfluss" type="string"/> <element name="maxdruck" type="string"/> <element name="leitungid" type="long"/> <element name="objektid" type="long"/> <element name="aknoten" type="long"/> <element name="eknoten" type="long"/> <element name="name" type="string"/> <element name="beschreibung" type="string"/> <element name="zustand" type="int"/> 4

5 <complextype name="arrayofleitungsis_leitung" xmlns:wsdl=" <attribute ref="soap-enc:arraytype" wsdl:arraytype="ns1:leitungsis_leitung[]"/> <complextype name="leitungsis_knoten" jdev:packagename="leitungsis" <element name="xkoordinate" type="double"/> <element name="ykoordinate" type="double"/> <element name="tiefe" type="double"/> <element name="offen" type="boolean"/> <element name="objektid" type="long"/> <element name="knotenid" type="long"/> <element name="name" type="string"/> <element name="beschreibung" type="string"/> <element name="zustand" type="int"/> <complextype name="arrayofleitungsis_knoten" xmlns:wsdl=" <attribute ref="soap-enc:arraytype" wsdl:arraytype="ns1:leitungsis_knoten[]"/> <complextype name="arrayofleitungsis_reparatur" xmlns:wsdl=" <attribute ref="soap-enc:arraytype" wsdl:arraytype="ns1:leitungsis_reparatur[]"/> <complextype name="leitungsis_reparatur" jdev:packagename="leitungsis" <element name="objektid" type="long"/> <element name="reparaturid" type="long"/> <element name="beschreibung" type="string"/> <element name="verantwortlicher" type="string"/> <element name="firma" type="string"/> <element name="von" type="datetime"/> <element name="bis" type="datetime"/> <complextype name="arrayofleitungsis_zaehlerstand" xmlns:wsdl=" <attribute ref="soap-enc:arraytype" wsdl:arraytype="ns1:leitungsis_zaehlerstand[]"/> <complextype name="leitungsis_zaehlerstand" jdev:packagename="leitungsis" <element name="anschlussid" type="long"/> <element name="zaehlerstandid" type="long"/> <element name="zaehlernr" type="string"/> <element name="ableser" type="string"/> <element name="stand" type="double"/> <element name="datum" type="datetime"/> </schema> </types> 5

6 Messages <message name="getanschluesse0request"> <part name="passwort" type="xsd:string"/> <message name="getanschluesse0response"> <part name="return" type="ns1:arrayofleitungsis_anschluss"/> <message name="getnetzimage1request"> <part name="x" type="xsd:double"/> <part name="y" type="xsd:double"/> <part name="deltax" type="xsd:double"/> <part name="deltay" type="xsd:double"/> <message name="getnetzimage1response"> <part name="return" type="xsd:base64binary"/> <message name="getobjekte2request"> <part name="x" type="xsd:double"/> <part name="y" type="xsd:double"/> <part name="deltax" type="xsd:double"/> <part name="deltay" type="xsd:double"/> <message name="getobjekte2response"> <part name="return" type="ns1:leitungsis_objektvektor"/> <message name="getstoerung3request"> <part name="object_id" type="xsd:long"/> <message name="getstoerung3response"> <part name="return" type="ns1:arrayofleitungsis_reparatur"/> <message name="getzaehlerstaende4request"> <part name="anschluss_id" type="xsd:long"/> <message name="getzaehlerstaende4response"> <part name="return" type="ns1:arrayofleitungsis_zaehlerstand"/> <message name="setstoerung5request"> <part name="zustand" type="xsd:int"/> <part name="reperatur" type="ns1:leitungsis_reparatur"/> <message name="setstoerung5response"> <part name="return" type="xsd:long"/> <message name="setzaehlerstand6request"> <part name="anschluss_id" type="xsd:long"/> <part name="zaehlerstand" type="xsd:double"/> <message name="setzaehlerstand6response"> <part name="return" type="xsd:long"/> 6

7 PortType <porttype name="leitungswebserviceporttype"> <operation name="getanschluesse"> <input name="getanschluesse0request" message="tns:getanschluesse0request"/> <output name="getanschluesse0response" message="tns:getanschluesse0response"/> <operation name="getnetzimage"> <input name="getnetzimage1request" message="tns:getnetzimage1request"/> <output name="getnetzimage1response" message="tns:getnetzimage1response"/> <operation name="getobjekte"> <input name="getobjekte2request" message="tns:getobjekte2request"/> <output name="getobjekte2response" message="tns:getobjekte2response"/> <operation name="getstoerung"> <input name="getstoerung3request" message="tns:getstoerung3request"/> <output name="getstoerung3response" message="tns:getstoerung3response"/> <operation name="getzaehlerstaende"> <input name="getzaehlerstaende4request" message="tns:getzaehlerstaende4request"/> <output name="getzaehlerstaende4response" message="tns:getzaehlerstaende4response"/> <operation name="setstoerung"> <input name="setstoerung5request" message="tns:setstoerung5request"/> <output name="setstoerung5response" message="tns:setstoerung5response"/> <operation name="setzaehlerstand"> <input name="setzaehlerstand6request" message="tns:setzaehlerstand6request"/> <output name="setzaehlerstand6response" message="tns:setzaehlerstand6response"/> </porttype> Binding <binding name="leitungswebservicebinding" type="tns:leitungswebserviceporttype"> <soap:binding style="rpc" transport=" <operation name="getanschluesse"> <operation name="getnetzimage"> <operation name="getobjekte"> 7

8 <operation name="getstoerung"> <operation name="getzaehlerstaende"> <operation name="setstoerung"> <operation name="setzaehlerstand"> </binding> Service <service name="leitungswebservice"> <port name="leitungswebserviceport" binding="tns:leitungswebservicebinding"> <soap:address location=" </port> </service> </definitions> 8

Web-Service Example. Service Oriented Architecture

Web-Service Example. Service Oriented Architecture Web-Service Example Service Oriented Architecture 1 Roles Service provider Service Consumer Registry Operations Publish (by provider) Find (by requester) Bind (by requester or invoker) Fundamentals Web

More information

Affiliate SOAP-API. Content:

Affiliate SOAP-API. Content: Affiliate SOAP-API Content: QualityClick SOAP-API Documentation - URI - Method - Authentication - Description of the SOAP-Service - Search transaction data - Request statistics - Response values of SOAP

More information

Send your request via a SOAP-Request (e.g. with DotNET/SOAP, Java, PHP) to he following URL of our server:

Send your request via a SOAP-Request (e.g. with DotNET/SOAP, Java, PHP) to he following URL of our server: 1 QualityClick SOAP-API Documentation 1.1 URI soap uri: soap proxy: ' ' https://www.qc-domain.de/iqx_downlink'; https://www.qc-domain.de/iqx_downlink_soap.cgi'; 1.2 Method Send your request via a SOAP-Request

More information

Service Oriented Architecture using JAVA

Service Oriented Architecture using JAVA Service Oriented Architecture using JAVA on NetBeans and GlassFish 3 By Eduardo Cavasotti 4/20/10 2 Table of Contents Abstract:... 3 Introduction:... 3 Tools:... 4 Getting ready... 4 Web Service Definition

More information

Introduction. Tom Dinkelaker, Ericsson Guido Salvaneschi, Mira Mezini, TUD

Introduction. Tom Dinkelaker, Ericsson Guido Salvaneschi, Mira Mezini, TUD Introduction Tom Dinkelaker, Ericsson Guido Salvaneschi, Mira Mezini, TUD Agenda of KICK-OFF MEETING Introduction Organization of Course Topics Questions & Answers Ericsson Telekommunikation GmbH & Co.

More information

Web Services. Distributed Object Systems 11. Web Services, SOAP and NET. Web Applications. Web Services. Web services vs Distributed Objects

Web Services. Distributed Object Systems 11. Web Services, SOAP and NET. Web Applications. Web Services. Web services vs Distributed Objects Distributed Object Systems 11 Web Services, SOAP and NET Piet van Oostrum Web Services Some Definitions A Web Service is a software system designed to support interoperable machine-to-machine interaction

More information

EHR-IIS Interoperability Enhancement Project. Transport Layer Protocol Recommendation Formal Specification. Version 1.

EHR-IIS Interoperability Enhancement Project. Transport Layer Protocol Recommendation Formal Specification. Version 1. EHR-IIS Interoperability Enhancement Project Transport Layer Protocol Recommendation Formal Specification Version 1.1 June 4, 2014 Transport Layer Expert Panel EHR-IIS Interoperability Enhancement Project

More information

Extending Policy Languages to the Semantic Web

Extending Policy Languages to the Semantic Web Extending Policy Languages to the Semantic Web E. Damiani, S. De Capitani di Vimercati, C. Fugazza, and P. Samarati DTI - Università di Milano 26013 Crema - Italy {damiani,decapita,samarati}@dti.unimi.it,

More information

Demonstrating EMail BC: Sending Out Mass Emailing v1.0

Demonstrating EMail BC: Sending Out Mass Emailing v1.0 Demonstrating EMail BC: Sending Out Mass Emailing v1.0 thomas.barrett@sun.com July 10, 2009 Lets assume that you want to see the EMail binding component in action. You are looking for a Hello World sort

More information

API Guide. SilkCentral Test Manager

API Guide. SilkCentral Test Manager API Guide SilkCentral Test Manager 2008 Borland Software Corporation 8303 N. Mopac Expressway, Suite A-300 Austin, TX 78759-8374 http://www.borland.com Borland Software Corporation may have patents and/or

More information

WSDL Example (Interface) WSDL Example (Implementation) Universal Description, Discovery and Integration. UDDI Usage

WSDL Example (Interface) WSDL Example (Implementation) Universal Description, Discovery and Integration. UDDI Usage Web Services Description Language WSDL Elements WSDL describes, how and where to access a service, i.e. the service interface, similar to remote object approaches like CORBA: What can the service do? -

More information

SOAP. SOAP SOAP d Apache/IBM Invocation générique : SOAP. Message XML SOAP. SOAP d Apache/IBM Invocation générique : SOAP

SOAP. SOAP SOAP d Apache/IBM Invocation générique : SOAP. Message XML SOAP. SOAP d Apache/IBM Invocation générique : SOAP Service Web? Web Services Description Langage & SOAP Service Web? Envoi d un message! Service Web? I m hungry! Service Web Obtention d une response IUP1 Novembre 2002 1 Services Web Interfaces Services

More information

Software Developer s Guide for the Cisco Secure Access Control System 5.1

Software Developer s Guide for the Cisco Secure Access Control System 5.1 Software Developer s Guide for the Cisco Secure Access Control System 5.1 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000

More information

Central Release and Build Management with TFS. Christian Schlag

Central Release and Build Management with TFS. Christian Schlag Central Release and Build Management with TFS Christian Schlag OUR DAILY MOTIVATION It s hard enough for software developers to write code that works on their machine. But even when it s done, there s

More information

Thomas Rümmler AIT GmbH & Co. KG Christian Schlag AIT GmbH & Co. KG. Central Build and Release Management with TFS

Thomas Rümmler AIT GmbH & Co. KG Christian Schlag AIT GmbH & Co. KG. Central Build and Release Management with TFS Thomas Rümmler AIT GmbH & Co. KG Christian Schlag AIT GmbH & Co. KG Central Build and Release Management with TFS 2 OUR DAILY MOTIVATION It s hard enough for software developers to write code that works

More information

ALWA-Befragungsdaten verknüpft mit administrativen Daten des IAB (ALWA-ADIAB)

ALWA-Befragungsdaten verknüpft mit administrativen Daten des IAB (ALWA-ADIAB) ALWA-Befragungsdaten verknüpft mit administrativen Daten des IAB (ALWA-ADIAB) Erster Workshop des German RLC Nürnberg 5. April 2012 Manfred Antoni Outline Data Process of record linkage Data access and

More information

SilkCentral Test Manager 2009 SP1. API Help

SilkCentral Test Manager 2009 SP1. API Help SilkCentral Test Manager 2009 SP1 API Help Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2009 Micro Focus (IP) Limited. All Rights Reserved. SilkCentral Test

More information

How To Manage Build And Release With Tfs 2013

How To Manage Build And Release With Tfs 2013 #dwx14 feedback@developer-week.de #dwx14 Central Build and Release Management with TFS Thomas Rümmler AIT GmbH & Co. KG Christian Schlag AIT GmbH & Co. KG 1 2 OUR DAILY MOTIVATION It s hard enough for

More information

Open Text Social Media. Actual Status, Strategy and Roadmap

Open Text Social Media. Actual Status, Strategy and Roadmap Open Text Social Media Actual Status, Strategy and Roadmap Lars Onasch (Product Marketing) Bernfried Howe (Product Management) Martin Schwanke (Global Service) February 23, 2010 Slide 1 Copyright Open

More information

Web Services Development Guide: How to build EMBRACE compliant Web Services Version 2.0, 13 December 2006

Web Services Development Guide: How to build EMBRACE compliant Web Services Version 2.0, 13 December 2006 Web Services Development Guide: How to build EMBRACE compliant Web Services Version 2.0, 13 December 2006 Jan Christian Bryne, Jean Salzemann, Vincent Breton, Heinz Stockinger, Marco Pagni 1. OBJECTIVE...2

More information

Building Web Services with XML Service Utility Library (XSUL)

Building Web Services with XML Service Utility Library (XSUL) Building Web Services with XML Service Utility Library (XSUL) Aleksander Slominski IU Extreme! Lab August 2005 Linked Environments for Atmospheric Discovery Outline Goals and Features Creating Web Services

More information

Anerkennungsliste im Rahmen von SOMMERUNIVERSITÄTEN der WU Partneruniversitäten. Bachelorstudium

Anerkennungsliste im Rahmen von SOMMERUNIVERSITÄTEN der WU Partneruniversitäten. Bachelorstudium Anerkennungsliste im Rahmen von SOMMERUNIVERSITÄTEN der WU Partneruniversitäten Bachelorstudium Bei dieser Liste handelt es sich um eine Sammlung von Erfahrungswerten der letzten Jahre. Jede dieser Lehrveranstaltungen

More information

Kernmodul Physiologie SS 2014

Kernmodul Physiologie SS 2014 Kernmodul Physiologie 2014 The present module intends to provide a deeper understanding of physiology, ranging from molecular and cell physiology to integrative human physiology. You will be exposed to

More information

Service Description: NIH GovTrip - NBS Web Service

Service Description: NIH GovTrip - NBS Web Service 8 July 2010 Page 1 Service Description: NIH GovTrip - NBS Web Service Version # Change Description Owner 1.0 Initial Version Jerry Zhou 1.1 Added ISC Logo and Schema Section Ian Sebright 8 July 2010 Page

More information

Joke Server example. with Java and Axis. Web services with Axis SOAP, WSDL, UDDI. Joke Metaservice Joke Server Joke Client.

Joke Server example. with Java and Axis. Web services with Axis SOAP, WSDL, UDDI. Joke Metaservice Joke Server Joke Client. Joke Server example SOAP and WSDL with Java and Axis Interactive web services, Course, Fall 2003 Henning Niss Joke Metaservice Joke Server Joke Client 3 meta service 2 IT University of Copenhagen client

More information

A PERFORMANCE MODEL WEB SERVICE

A PERFORMANCE MODEL WEB SERVICE A PERFORMANCE MODEL WEB SERVICE Catalina M. Lladó, Ramon Puigjaner Universitat Illes Balears Departament de Matemàtiques I Informàtica Cra. de Valldemossa, Km 7.6 07071 Palma de Mallorca, Spain cllado@uib.es,

More information

TIn 1: Lecture 3: Lernziele. Lecture 3 The Belly of the Architect. Basic internal components of the 8086. Pointers and data storage in memory

TIn 1: Lecture 3: Lernziele. Lecture 3 The Belly of the Architect. Basic internal components of the 8086. Pointers and data storage in memory Mitglied der Zürcher Fachhochschule TIn 1: Lecture 3 The Belly of the Architect. Lecture 3: Lernziele Basic internal components of the 8086 Pointers and data storage in memory Architektur 8086 Besteht

More information

Towards Semantic based Requirements Engineering

Towards Semantic based Requirements Engineering Proceedings of I-KNOW 07 Graz, Austria, September 5-7, 2007 Towards Semantic based Requirements Engineering Thomas Riechert (University of Leipzig, Germany, riechert@informatik.uni-leipzig.de) Kim Lauenroth

More information

How To Design An Online Ticket Service (Ots)

How To Design An Online Ticket Service (Ots) Department of Electrical and Computer Engineering Schulich School of Engineering Project Report for SENG609.22 Agent-based Software Engineering (Fall 2005) Instructor: Dr. B. H. Far Agent-based Online

More information

Explanation of the TYPO3 Integrator Certification. 05.02.2011 TYPO3 UG NRW Stefan Neufeind (slides adapted from Peter Niederlag & Patrick Lobacher)

Explanation of the TYPO3 Integrator Certification. 05.02.2011 TYPO3 UG NRW Stefan Neufeind (slides adapted from Peter Niederlag & Patrick Lobacher) Explanation of the TYPO3 Integrator Certification 05.02.2011 TYPO3 UG NRW Stefan Neufeind (slides adapted from Peter Niederlag & Patrick Lobacher) Agenda Introduction of the certification team What is

More information

SAP GLOBAL DIVERSITY POLICY

SAP GLOBAL DIVERSITY POLICY SAP GLOBAL DIVERSITY POLICY Date 29.8.2006 1 TABLE OF CONTENTS Cover Sheet... 2 PREFACE... 3 1 DEFINITION... 4 2 OBJECTIVES AND SCOPE... 4 2.1 KEY TARGETS FOR DIVERSITY AT SAP... 5 2.2 COMPLIANCE/SANCTIONS...

More information

DATA is just like CRUDE. It s valuable, but if unrefined it cannot really be used.

DATA is just like CRUDE. It s valuable, but if unrefined it cannot really be used. Data is the new Oil DATA is just like CRUDE. It s valuable, but if unrefined it cannot really be used. Clive Humby "Digitale Informationsspeicher Im Meer der Daten" "Die Menschen produzieren immer mehr

More information

Finest Laboratory Products

Finest Laboratory Products Finest Laboratory Products Table of Contents / Inhaltsverzeichnis 03 About HPdent 04 About M.P.F. 06 M.P.F. Brushes, Instruments M.P.F. Pinsel, Instrumente 12 M.P.F. Porcelain Tools 14 About Harvest Dental

More information

Data Warehousing Metadata Management

Data Warehousing Metadata Management Data Warehousing Metadata Management Spring Term 2014 Dr. Andreas Geppert Credit Suisse geppert@acm.org Spring 2014 Slide 1 Outline of the Course Introduction DWH Architecture DWH-Design and multi-dimensional

More information

Data Warehousing Metadata Management

Data Warehousing Metadata Management Data Warehousing Metadata Management Spring Term 2014 Dr. Andreas Geppert Credit Suisse geppert@acm.org Spring 2014 Slide 1 Outline of the Course Introduction DWH Architecture DWH-Design and multi-dimensional

More information

Jetzt können Sie den Befehl 'nsradmin' auch für diverse Check-Operationen verwenden!

Jetzt können Sie den Befehl 'nsradmin' auch für diverse Check-Operationen verwenden! NetWorker - Allgemein Tip 642, Seite 1/6 Jetzt können Sie den Befehl 'nsradmin' auch für diverse Check-Operationen verwenden! Seit einiger Zeit (NetWorker 8.2.0?) können Sie mit dem Befehl nsradmin -C

More information

Software agents. Web services. and. F. Dignum Utrecht University

Software agents. Web services. and. F. Dignum Utrecht University Web services and Software agents F. Dignum Utrecht University Contents What are Web Services? Standards Problems with Web Services Software Agents Conclusions Today s Web Web Services: Killer Application?

More information

SPICE auf der Überholspur. Vergleich von ISO (TR) 15504 und Automotive SPICE

SPICE auf der Überholspur. Vergleich von ISO (TR) 15504 und Automotive SPICE SPICE auf der Überholspur Vergleich von ISO (TR) 15504 und Automotive SPICE Historie Software Process Improvement and Capability determination 1994 1995 ISO 15504 Draft SPICE wird als Projekt der ISO zur

More information

Wir stellen uns vor We introduce ourselves

Wir stellen uns vor We introduce ourselves Wir stellen uns vor We introduce ourselves Wir bieten Ihnen ein umfassendes Spektrum an Dienstleistungen in der Nukleartechnik. Dabei setzen wir unsere langjфhrige Erfahrung und unser umfassendes Know-how

More information

RAT DER EUROPÄISCHEN UNION. Brüssel, den 2. März 2012 (06.03) (OR. en) 6051/12 INF 11 API 11 JUR 50. I/A-PUNKT-VERMERK Gruppe "Information"

RAT DER EUROPÄISCHEN UNION. Brüssel, den 2. März 2012 (06.03) (OR. en) 6051/12 INF 11 API 11 JUR 50. I/A-PUNKT-VERMERK Gruppe Information RAT DER EUROPÄISCHEN UNION Brüssel, den 2. März 2012 (06.03) (OR. en) 6051/12 INF 11 API 11 JUR 50 I/A-PUNKT-VERMERK der Gruppe "Information" für den AStV (2. Teil)/Rat Nr. Vordokument: 6050/12 Betr.:

More information

SEVERAL new approaches to network management

SEVERAL new approaches to network management Prototyping Web Services based Network Monitoring Thomas Drevers, Remco van de Meent, Aiko Pras Abstract Web services is one of the emerging approaches in network management. This paper describes the design

More information

Microsoft Nano Server «Tuva» Rinon Belegu

Microsoft Nano Server «Tuva» Rinon Belegu 1 Microsoft Nano Server «Tuva» Rinon Belegu Partner: 2 Agenda Begrüssung Vorstellung Referent Content F&A Weiterführende Kurse 3 Vorstellung Referent Rinon Belegu Microsoft Certified Trainer (AWS Technical

More information

Entwicklung von Integrationslösungen aus einem Guss mit AIA Foundation Pack 11g

Entwicklung von Integrationslösungen aus einem Guss mit AIA Foundation Pack 11g Entwicklung von Integrationslösungen aus einem Guss mit AIA Foundation Pack 11g Gregor Bublitz Director gregor.bublitz@ec4u.de Gerhard Drasch Solution Architect, Oracle FMW A-Team

More information

Linux & Docker auf Azure

Linux & Docker auf Azure Linux & Docker auf Azure Linux in der Azure Cloud Web Mail Twitter Rainer Stropek software architects gmbh http://www.timecockpit.com rainer@timecockpit.com @rstropek Saves the day. Your Host Rainer Stropek

More information

LEARNING AGREEMENT FOR STUDIES

LEARNING AGREEMENT FOR STUDIES LEARNING AGREEMENT FOR STUDIES The Student Last name (s) First name (s) Date of birth Nationality 1 Sex [M/F] Academic year 20../20.. Study cycle EQF level 6 Subject area, Code Phone E-mail 0421 The Sending

More information

Programmieren von Schnittstellen für LiveCycle ES2-Modulen (November 2009)

Programmieren von Schnittstellen für LiveCycle ES2-Modulen (November 2009) Programmieren von Schnittstellen für LiveCycle ES2-Modulen (November 2009) In diesem Dokument werden die Programmierschnittstellen aufgeführt, mit deren Hilfe Entwickler Anwendungen unter Verwendung von

More information

Middleware and the Internet. Example: Shopping Service. What could be possible? Service Oriented Architecture

Middleware and the Internet. Example: Shopping Service. What could be possible? Service Oriented Architecture Middleware and the Internet Example: Shopping Service Middleware today Designed for special purposes (e.g. DCOM) or with overloaded specification (e.g. CORBA) Specifying own protocols integration in real

More information

Bindings for the Service Provisioning Markup Language (SPML) Version 1.0

Bindings for the Service Provisioning Markup Language (SPML) Version 1.0 1 2 3 Bindings for the Service Provisioning Markup Language (SPML) Version 1.0 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 OASIS Standard, Approved October 2003 Document identifier:

More information

Exchange Synchronization AX 2012

Exchange Synchronization AX 2012 Exchange Synchronization AX 2012 Autor... Pascal Gubler Dokument... Exchange Synchronization 2012 (EN) Erstellungsdatum... 25. September 2012 Version... 2 / 17.06.2013 Content 1 PRODUKTBESCHREIBUNG...

More information

AJAX SSL- Wizard Reference

AJAX SSL- Wizard Reference AJAX SSL- Wizard Reference Version 1.0.2+ - 04.04.2011 Preamble This document explains the AJAX based SSL- Wizard developed by CertCenter AG. The seemless integration of the SSL- Wzard into the partner

More information

1Copyright 2013, Oracle and/or its affiliates. All rights reserved.

1Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1Copyright 2013, Oracle and/or its affiliates. All rights reserved. The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Erste Schritte mit mysql. Der Umgang mit einer relationalen Datenbank

Erste Schritte mit mysql. Der Umgang mit einer relationalen Datenbank Erste Schritte mit mysql Der Umgang mit einer relationalen Datenbank Relationale Datenbanken Prinzip: Daten sind in Tabellen gespeichert Tabellen können verknüpft sein alter Name: RDBMS - Relational Database

More information

Zielgruppe Dieses Training eignet sich für System Engineers und an SCCM- Administratoren.

Zielgruppe Dieses Training eignet sich für System Engineers und an SCCM- Administratoren. Deploying System Center 2012 Configuration Manager - SCCM MOC 10748 In dieser Schulung lernen Sie die Planung und Bereitstellung einer System Center 2012 Configuration Manager-Hierarchie, einschließlich

More information

AnyWeb AG 2008 www.anyweb.ch

AnyWeb AG 2008 www.anyweb.ch HP SiteScope (End-to-End Monitoring, System Availability) Christof Madöry AnyWeb AG ITSM Practice Circle September 2008 Agenda Management Technology Agentless monitoring SiteScope in HP BTO SiteScope look

More information

STELTSICHVOR. Webdesign-and-IT. TiloBreuer Luftstrase16 38116Braunschweig Tel: 05316095675 Mobil:01751603449 Fax: 05316095676

STELTSICHVOR. Webdesign-and-IT. TiloBreuer Luftstrase16 38116Braunschweig Tel: 05316095675 Mobil:01751603449 Fax: 05316095676 STELTSICHVOR Webdesign-and-IT TiloBreuer Luftstrase16 38116Braunschweig Tel: 05316095675 Mobil:01751603449 Fax: 05316095676 Ichfreuemich,dassSieInteresseanmeinenDienstleistungenhaben undbedankemichgleichzeitigfürihreinvestiertezeit.

More information

Trading Beyond Human Capabilities Live Algorithms. Kai Zimmermann Chair of Business Administration, especially e-finance

Trading Beyond Human Capabilities Live Algorithms. Kai Zimmermann Chair of Business Administration, especially e-finance Trading Beyond Human Capabilities Live Algorithms Kai Zimmermann Chair of Business Administration, especially e-finance Who we are and what we do Chair of Business Administration, especially e-finance

More information

Insights from the Global Chief Marketing Officer Study

Insights from the Global Chief Marketing Officer Study Insights from the Global Chief Marketing Officer Study The 2011 Global CMO Study is part of our C-suite Study series encompassing interviews with more than 15,000 C-suite executives 04-05 06-07 08-09 10-11

More information

Master of Science Business Administration

Master of Science Business Administration Master of Science Business Administration Abbildung der Studiengangstrukturen PO 2015 Bitte beachten Sie, dass es sich hierbei um vorläufige Übersichten der Studienstruktur handelt, die das WiSo-Studienberatungszentrum

More information

2010 Users Symposium Berlin

2010 Users Symposium Berlin Amer Kakish Slide 1 Barrierefreiheit Mobilität Skalierbarkeit Übersetzbarkeit Benutzerfreundlichkeit Auto Erkennung Auto Größenanpassung Slide 2 Einbettung in Social-Networking Platformen In Wikis, Blogs

More information

Web services with WebSphere Studio: Build and test

Web services with WebSphere Studio: Build and test Web services with WebSphere Studio: Build and test www7b.software.ibm.com/wsdd/ Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that

More information

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Update to V10 Automic Support: Best Practices Josef Scharl Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Agenda Update to Automation Engine Version 10 Innovations in Version

More information

First Environmental Comparison of Rail Transport

First Environmental Comparison of Rail Transport First Environmental Comparison of Rail Transport A projectof the Alianz pro Schiene Co-funded by the Federal Ministry for Environment, Nature Conservation and Nuclear Safety (BMU) in co-operation with

More information

QAS DEBUG - User und Computer

QAS DEBUG - User und Computer QAS DEBUG - User und Computer Inhalt Computer Status vastool status Benutzer Login vastool list user vastool nss getpwnam vastool user checkaccess kinit su

More information

Cúram Web Services Guide

Cúram Web Services Guide IBM Cúram Social Program Management Cúram Web Services Guide Version 6.0.4 Note Before using this information and the product it supports, read the information in Notices at the back of this guide. This

More information

technische universität dortmund Prof. Dr. Ramin Yahyapour

technische universität dortmund Prof. Dr. Ramin Yahyapour technische universität Prof. Dr. Ramin Yahyapour IT & Medien Centrum 20. April 2010 Übungen Betreuung Florian Feldhaus, Peter Chronz Termine Mittwochs 14:15 15:00 Uhr, GB IV R.228 Donnerstags 10:15 11:00

More information

WEB SERVICES. Definition: Web service is a programmable application component that s accessible through standard Web protocols.

WEB SERVICES. Definition: Web service is a programmable application component that s accessible through standard Web protocols. WEB SERVICES Definition: Web service is a programmable application component that s accessible through standard Web protocols. Introduction to Web Services: Web services are next generation e-business

More information

Quick Reference Guide to the Online Catalog of Freie Universität Berlin. http://opac.fu-berlin.de

Quick Reference Guide to the Online Catalog of Freie Universität Berlin. http://opac.fu-berlin.de Quick Reference Guide to the Online Catalog of Freie Universität Berlin http://opac.fu-berlin.de November 2012 Fachbereich Rechtswissenschaft Bibliothek Van t-hoff-str. 8 14195 Berlin Telefon +49 30 838

More information

Intelligent Systems: Three Practical Questions. Carsten Rother

Intelligent Systems: Three Practical Questions. Carsten Rother Intelligent Systems: Three Practical Questions Carsten Rother 04/02/2015 Prüfungsfragen Nur vom zweiten Teil der Vorlesung (Dimitri Schlesinger, Carsten Rother) Drei Typen von Aufgaben: 1) Algorithmen

More information

Sichere Kollaboration durch professionelles Risikomanagement für Microsoft SharePoint und Office 365. Accessible content is available upon request.

Sichere Kollaboration durch professionelles Risikomanagement für Microsoft SharePoint und Office 365. Accessible content is available upon request. Sichere Kollaboration durch professionelles Risikomanagement für Microsoft SharePoint und Office 365 Accessible content is available upon request. Unsere Geschichte 2001 Unser Geschäft Unser Wachstum Microsoft

More information

e-journal of Practical Business Research Business Process Benchmarking Implementierung

e-journal of Practical Business Research Business Process Benchmarking Implementierung e-journal of Practical Business Research Business Process Benchmarking Implementierung Jörg Puchan, Sophia Zapf, Fee Schubert-Stöcklein, Christian Willige puchan@hm.edu Erschienen im e-journal of Practical

More information

TOPHOTELPROJECTS. The leading online database for worldwide first class and luxury hotel construction projects

TOPHOTELPROJECTS. The leading online database for worldwide first class and luxury hotel construction projects TOPHOTELPROJECTS The leading online database for worldwide first class and luxury hotel construction projects TOPHOTELPROJECTS Our Service We provide b2b-suppliers with accurate, globally researched and

More information

What's behind an Accelerator- Rüdiger Schmitz - MCS - WECOMA04 PCaPAC 2010, Saskatoon, October 6. 2010

What's behind an Accelerator- Rüdiger Schmitz - MCS - WECOMA04 PCaPAC 2010, Saskatoon, October 6. 2010 What's behind an Accelerator- Control System? Rüdiger Schmitz - MCS - WECOMA04 PCaPAC 2010, Saskatoon, October 6. 2010 Outline > Introduction DESY s profile changed Impact on Control System Group > Different

More information

Anerkennungsliste im Rahmen von. AUSTAUSCHPROGRAMMEN an der WIRTSCHAFTSUNIVERSITÄT WIEN. Masterstudium Supply Chain Management

Anerkennungsliste im Rahmen von. AUSTAUSCHPROGRAMMEN an der WIRTSCHAFTSUNIVERSITÄT WIEN. Masterstudium Supply Chain Management Anerkennungsliste im Rahmen von AUSTAUSCHPROGRAMMEN an der WIRTSCHAFTSUNIVERSITÄT WIEN Masterstudium Supply Chain Management Bei dieser Liste handelt es sich um eine Sammlung von Erfahrungswerten der letzten

More information

Anerkennungsliste im Rahmen von. AUSTAUSCHPROGRAMMEN an der WIRTSCHAFTSUNIVERSITÄT WIEN. Masterstudium Finanzwirtschaft und Rechnungswesen

Anerkennungsliste im Rahmen von. AUSTAUSCHPROGRAMMEN an der WIRTSCHAFTSUNIVERSITÄT WIEN. Masterstudium Finanzwirtschaft und Rechnungswesen Anerkennungsliste im Rahmen von AUSTAUSCHPROGRAMMEN an der WIRTSCHAFTSUNIVERSITÄT WIEN Masterstudium Finanzwirtschaft und Rechnungswesen Bei dieser Liste handelt es sich um eine Sammlung von Erfahrungswerten

More information

How To Use Spera For Business

How To Use Spera For Business FIS/mpm Master Data & Price Management Quick and Comprehensive Master Data Management References The Best Evidence Schachermayer-Großhandelsgesellschaft mbh Wholesaler for the wood-, metal and glass working

More information

Cloud OS Network. Uwe Lüthy, Die Bedeutung einer Partner Managed Cloud für Kunden. Partner Technology Strategiest uwelu@microsoft.

Cloud OS Network. Uwe Lüthy, Die Bedeutung einer Partner Managed Cloud für Kunden. Partner Technology Strategiest uwelu@microsoft. Cloud OS Network Die Bedeutung einer Partner Managed Cloud für Kunden. Uwe Lüthy, Partner Technology Strategiest uwelu@microsoft.com Die Cloud Opportunity Definition von Buzzwords Cloud OS Strategie Wichtig

More information

Distributed Embedded Systems

Distributed Embedded Systems Distributed Embedded Systems Computer Architecture and Operating Systems 2 Content 1. Motivation 2. An Overview of Distributed Software Architecture Approaches 2.1 Pro & Contra Middleware 2.2 Message-Based

More information

an introduction to the AQAS and our procedures

an introduction to the AQAS and our procedures an introduction to the AQAS and our procedures (Agency for Quality Assurance through Accreditation of Study Programmes) AQAS an introduction Our Background (The German Accreditation System) AQAS - Facts

More information

PBS CBW NLS IQ Enterprise Content Store

PBS CBW NLS IQ Enterprise Content Store CBW NLS IQ Enterprise Content Store Solution for NetWeaver BW and on HANA Information Lifecycle Management in BW Content Information Lifecycle Management in BW...3 Strategic Partnership...4 Information

More information

Information Systems 2

Information Systems 2 Information Systems 2 Prof. Dr. Dr. L. Schmidt-Thieme MSc. André Busche Übung 9 0. Allerlei 1. Übung 2. Hands on some things 2.1 Saxon 2.2 Corba 28.06.10 2/ 0. Allerlei 1. Übung 2. Hands on some things

More information

FH im Dialog. Weidener Diskussionspapiere. Financial Benefits of Business Process Management - A critical evaluation of current studies

FH im Dialog. Weidener Diskussionspapiere. Financial Benefits of Business Process Management - A critical evaluation of current studies FACHHOCHSCHULE MBERG - EIDEN A W FH im Dialog Weidener Diskussionspapiere Financial Benefits of Business Process Management - A critical evaluation of current studies Main issues and findings Helmut Pirzer

More information

Virtual Address Mapping

Virtual Address Mapping Virtual Address Mapping Ziel ist es, zwischen zwei ZyWALL Routern (ZyWALL 2 Plus ZyWALL P1), welche sich beide im selben Lokalen IP Bereich (192.168.1.1/24) befinden, einen VPN-Tunnel mittels NAT over

More information

Windows HPC Server 2008 Deployment

Windows HPC Server 2008 Deployment Windows HPC Server 2008 Michael Wirtz wirtz@rz.rwth-aachen.de Rechen- und Kommunikationszentrum RWTH Aachen Windows-HPC 2008 19. Sept 08, RWTH Aachen Windows HPC Server 2008 - Agenda o eines 2 Knoten Clusters

More information

J2EE-Application Server

J2EE-Application Server J2EE-Application Server (inkl windows-8) Installation-Guide F:\_Daten\Hochschule Zurich\Web-Technologie\ApplicationServerSetUp.docx Last Update: 19.3.2014, Walter Rothlin Seite 1 Table of Contents Java

More information

TEAM BUILDING IN AGILE SOFTWARE DEVELOPMENT:

TEAM BUILDING IN AGILE SOFTWARE DEVELOPMENT: Prof. Dr. Eckhart Hanser, Hanser: DHBW TEAM Lörrach, BUILDING Bio-Systems IN AGILE PROJECTS Informatics / Software-Engineering www.dhbw-l loerrach.de e TEAM BUILDING IN AGILE SOFTWARE DEVELOPMENT: THE

More information

Quick Start Guide UTM 110/120

Quick Start Guide UTM 110/120 Quick Start Guide UTM 110/120 Sophos Access Points Sophos Access Points 1. Preparation Before you begin, please confirm that you have a working Internet connection & make sure you have the following items

More information

Summary. Griglie e Sistemi di Elaborazione Ubiqui. Corso di Laurea Specialistica in Ingegneria informatica. Lucidi delle Esercitazioni

Summary. Griglie e Sistemi di Elaborazione Ubiqui. Corso di Laurea Specialistica in Ingegneria informatica. Lucidi delle Esercitazioni Griglie e Sistemi di Elaborazione Ubiqui Corso di Laurea Specialistica in Ingegneria informatica Lucidi delle Esercitazioni Anno Accademico 2005/2006 Ing. Antonio Congiusta Ing. Antonio Congiusta 1 Summary

More information

Übungen zur Vorlesung Einführung in die Volkswirtschaftslehre VWL 1

Übungen zur Vorlesung Einführung in die Volkswirtschaftslehre VWL 1 Übungen zur Vorlesung Einführung in die Volkswirtschaftslehre VWL 1 Übungen Kapitel 31/38 Beat Spirig Aufgabe 31.4, UK capital outflow NCO = purchases of foreign assets by domestic residents purchases

More information

Developments in the Austrian Surveying Education

Developments in the Austrian Surveying Education Gert STEINKELLNER, Austria Key words: University Curriculum, Advanced Technical College, Civil Engineer, Assistant Surveyor. ABSTRACT In Austria was a substantial change of surveying education during the

More information

Semantic Web. Semantic Web: Resource Description Framework (RDF) cont. Resource Description Framework (RDF) W3C Definition:

Semantic Web. Semantic Web: Resource Description Framework (RDF) cont. Resource Description Framework (RDF) W3C Definition: Semantic Web: The Semantic Web is an extension of the current web in which information is given well-defined meaning, better enabling computers and people to work in cooperation. Tim Berners-Lee, James

More information

ausführliche Dokumentation, Stand: 26.11.00

ausführliche Dokumentation, Stand: 26.11.00 ausführliche Dokumentation, Stand: 26.11.00 Class Name: Person Category: Logical View abstrakte Klasse, die allgemeine Attribute für Personenverwaltung enthält Export Control: Public Cardinality: n Hierarchy:

More information

Development of a Web-Service for the DIOXIN- Database of Germany

Development of a Web-Service for the DIOXIN- Database of Germany EnviroInfo 2004 (Geneva) Sh@ring EnviroInfo 2004 Development of a Web-Service for the DIOXIN- Database of Germany Gerlinde Knetsch 1, Erich Weihs 2 Abstract Die DIOXIN-Datenbank des Bundes und der Länder

More information

Mit einem Auge auf den mathema/schen Horizont: Was der Lehrer braucht für die Zukun= seiner Schüler

Mit einem Auge auf den mathema/schen Horizont: Was der Lehrer braucht für die Zukun= seiner Schüler Mit einem Auge auf den mathema/schen Horizont: Was der Lehrer braucht für die Zukun= seiner Schüler Deborah Löwenberg Ball und Hyman Bass University of Michigan U.S.A. 43. Jahrestagung für DidakEk der

More information

The Changing Global Egg Industry

The Changing Global Egg Industry Vol. 46 (2), Oct. 2011, Page 3 The Changing Global Egg Industry - The new role of less developed and threshold countries in global egg production and trade 1 - Hans-Wilhelm Windhorst, Vechta, Germany Introduction

More information

Microsoft Certified IT Professional (MCITP) MCTS: Windows 7, Configuration (070-680)

Microsoft Certified IT Professional (MCITP) MCTS: Windows 7, Configuration (070-680) Microsoft Office Specialist Office 2010 Specialist Expert Master Eines dieser Examen/One of these exams: Eines dieser Examen/One of these exams: Pflichtexamen/Compulsory exam: Word Core (Exam 077-881)

More information

Voraussetzungen/ Prerequisites *for English see below*

Voraussetzungen/ Prerequisites *for English see below* English Programme im akademischen Jahr 2013/2014 English Programme in the Academic Year 2013/2014 *for English see below* Im akademischen Jahr 2013/2014 freuen wir uns Ihnen erneut ein Programm mit englischsprachigen

More information

After School Activities

After School Activities About ASAP THE VISION After School Activities Program The goal of all the ISS After School Sports and Activities Program is to provide and coordinate a variety of NON-COMPETITIVE activities for our member

More information

NOAH'STUTZ! TOP!FUEL!DRAGSTER!DRIVER! Season'2015'

NOAH'STUTZ! TOP!FUEL!DRAGSTER!DRIVER! Season'2015' NOAH'STUTZ! TOP!FUEL!DRAGSTER!DRIVER! Season'2015' Noah'Stutz' Wohnort / place of residence: Hersberg (BL), Switzerland Geburtsdatum / date of birth: 11. November 1994 Ausbildung / education: Büroassistent

More information