Directory Services. (in particular LDAP) Karst Koymans, Jaap van Ginkel. Friday, October 12, Informatics Institute University of Amsterdam

Size: px
Start display at page:

Download "Directory Services. (in particular LDAP) Karst Koymans, Jaap van Ginkel. Friday, October 12, Informatics Institute University of Amsterdam"

Transcription

1 Directory Services (in particular LDAP) Karst Koymans, Jaap van Ginkel Informatics Institute University of Amsterdam (version 1.9, 2012/10/05 13:37:02) Friday, October 12, 2012 Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

2 1 History of Directory Services 2 Use of directories 3 DIT, naming and attributes 4 Representation and protocol Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

3 History of Directory Services Outline 1 History of Directory Services 2 Use of directories 3 DIT, naming and attributes 4 Representation and protocol Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

4 History of Directory Services Common Directory Services Flat les (from BSD) NIS (Network Information Service from Sun) was YP (Yellow Pages) extended to NIS+ NetInfo (NEXTSTEP - Mac OS X v10.4) Active Directory (Microsoft) LDAP (Lightweight Directory Access Protocol) Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

5 History of Directory Services LDAP History (1) X.500 standard (1988) Developed by CCITT (ITU-T) Uses DAP (Directory Access Protocol) Between DUA (Directory User Agent) and DSA (Directory System Agent) Based on OSI software Revised in 1993 Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

6 History of Directory Services LDAP History (2) LDAP (Lightweight DAP) as simple access to X.500 LDAP v1 (RFC 1487) in 1993 LDAP v2 (RFC 1777) in 1995 LDAP as replacement for X.500 LDAP v3 (RFC 2251) in 1997 Obsoleted by RFC 451i (i=0,...,9) in 2006 Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

7 History of Directory Services LDAP versus X.500 (1) LDAP v1 and v2 Works directly over TCP/IP Use ordinary strings instead of ASN.1/BER in many cases Simplies BER in other cases Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

8 History of Directory Services LDAP versus X.500 (2) LDAP v3 Simplications from v1 and v2 Denes referrals Uses SASL for security Uses Unicode for internationalisation Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

9 Use of directories Outline 1 History of Directory Services 2 Use of directories 3 DIT, naming and attributes 4 Representation and protocol Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

10 Use of directories Properties of directories Optimized for reads Distributed model for information storage Extendable information Advanced search capabilities Replication capabilities Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

11 Use of directories LDAP models (1) Information model Denes structures and data types Denes the Directory Information Base (DIB) Naming model How entries are referenced Denes (Relative) Distinguished Names Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

12 Use of directories LDAP models (2) Functional model Denes the protocol Denes what operations can be performed Security model Provides authentication Provides authorization Provides condentiality Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

13 Use of directories LDAP models (3) How do LDAP models compare to the DNS environment? Information model Naming model Functional model Security model Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

14 Use of directories LDAP models (3) How do LDAP models compare to the DNS environment? Information model Resource records Naming model Functional model Security model Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

15 Use of directories LDAP models (3) How do LDAP models compare to the DNS environment? Information model Resource records Naming model Owner names (domain names) Functional model Security model Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

16 Use of directories LDAP models (3) How do LDAP models compare to the DNS environment? Information model Resource records Naming model Owner names (domain names) Functional model Query Security model Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

17 Use of directories LDAP models (3) How do LDAP models compare to the DNS environment? Information model Resource records Naming model Owner names (domain names) Functional model Query Security model Authentication, no authorization or condentiality Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

18 DIT, naming and attributes Outline 1 History of Directory Services 2 Use of directories 3 DIT, naming and attributes 4 Representation and protocol Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

19 DIT, naming and attributes Directory Information Tree A Directory Information Tree (DIT) is a tree where the nodes are called Directory Entries which each contain a set of attributes where every attribute has a type and a value Directory Schemas are used to specify the allowed entries and attribute types LDIF (LDAP Data Interchange Format) is used to dene specic entries Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

20 DIT, naming and attributes Naming Directory Entries An RDN (Relative Distinguished Name) consists of a subset of attributes that uniquely identies the entry among its siblings most of the time being a singleton subset comparable to a primary key in a relational database An DN (Distinguished Name) is a sequence of RDNs, separated by,s making the entry unique on the LDAP server Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

21 DIT, naming and attributes Special Attributes (1) the objectclass attribute is always present objectclass denes valid attribute types for the entry a classic selfreference objectclass is always in the list this attribute can be multivalued Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

22 DIT, naming and attributes Special Attributes (2) the dn attribute is not a real attribute but is often presented as such contains the distinguished name of an entry is useful inside an LDIF representation Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

23 DIT, naming and attributes X.500 names and DNS labels A DNS domain name like os3.nl. corresponds to a distinguished name dc=os3,dc=nl where dc is the domaincomponent attribute of an entry of objectclass: domain which represents the LDAP server's naming context Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

24 DIT, naming and attributes Object classes An object class species a name for the class and its OID (object identier) species mandatory attribute types species optional attribute types is part of a class hierarchy (inheritance) Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

25 DIT, naming and attributes Attribute types An attribute type uniquely species the name of the attribute type and its OID (object identier) species whether it is single-valued or multi-valued species the attribute syntax and matching criteria, for instance testing for equality, ordering,... Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

26 DIT, naming and attributes Attribute syntax species the kind of data for values (datatype) can be primitive or complex sets parameters for ranges or sizes Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

27 DIT, naming and attributes Directory schema (1) A directory schema species available object classes with the attribute types and the attribute syntax Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

28 DIT, naming and attributes Directory schema (2) A schema can be written in several formats ASN.1 schema format LDAPv3 schema format slapd.conf schema format Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

29 Representation and protocol Outline 1 History of Directory Services 2 Use of directories 3 DIT, naming and attributes 4 Representation and protocol Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

30 Representation and protocol LDIF LDAP Data Interchange Format standard text le format describing directory entries dened in RFC 2849 Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

31 Representation and protocol LDAP wire format LDAP sends messages based on ASN.1 Abstract Syntac Notation One and uses a subset of BER for wire encoding Basic Encoding Rules Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

32 Representation and protocol LDAP operations (1) Authentication and control bind unbind abandon establish authentication state abandon operations and close connections abort earlier operation (by ID) Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

33 Representation and protocol LDAP operations (2) Updates add delete modify create a new node remove a complete node change attributes or values at a node modify DN rename/move (R)DN Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

34 Representation and protocol LDAP operations (3) Search and retrieve search compare specialized search can show nonexistence of an attribute Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

35 Representation and protocol LDAP security Several security mechanisms are dened None (anonymous access) Clear text passwords Kerberos authentication SASL authentication LDAP over SSL/TLS (STARTTLS or ldaps) Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

36 Representation and protocol Searching A search operation has eight (!) parameters Replaces a non-existent read operation A read is a search restricted to only one DN Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

37 Representation and protocol Search parameters (1) Base DN Scope base onelevel subtree Treatment of aliases Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

38 Representation and protocol Search parameters (2) Size limit (number of entries to return) Time limit (maximum time spent searching) Include attribute types and values or only types Search lter List of attributes to be returned Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

39 Representation and protocol Search lters Boolean combination of atomic search lters Boolean operators allowed & (Boolean AND) (Boolean OR)! (Boolean NOT) (&(givenname=niels)( (l=amsterdam)(l=utrecht))) Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

40 Representation and protocol Atomic search lters (1) Equality (sn=van der ham) matches van der Ham Greater Than or Equal To (age>=18) matches 21 Less Than or Equal To (age<=21) matches 21 Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

41 Representation and protocol Atomic search lters (2) Substring (sn=*ham) matches van der Ham Approximate (sn =van der Hem) matches van der Ham Presence (sn=*) matches any entry with a sn attribute Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

42 Representation and protocol Aliases Directory entries of objectclass alias Mandatory attribute aliasedobjectname which contains a reference to another DN Could be compared with a CNAME in DNS Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

43 Representation and protocol Referrals Directory entries of objectclass referral Optional attribute ref which contains an LDAP URI Another option is chaining Compare to recursion and iteration in DNS Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

44 Representation and protocol LDAP URIs ldap:// fqdn:port/ ldaps:// fqdn:port/ distinguished_name distinguished_name Karst Koymans, Jaap van Ginkel (UvA) Directory Services Friday, October 12, / 40

Multi tenancy. Alessandra Toninelli 2013/10/10 15:58

Multi tenancy. Alessandra Toninelli 2013/10/10 15:58 Multi tenancy Alessandra Toninelli 2013/10/10 15:58 Table of Contents 1 Overview.. 3 2 Configuration... 3 Page 2 - last modified by Alessandra Toninelli on 2013/10/10 15:58 Multi-tenancy is supported starting

More information

Real Estate Transaction Method And System

Real Estate Transaction Method And System ( 1 of 1 ) United States Patent Application 20060282378 Kind Code A1 Gotfried; Bradley L. December 14, 2006 Real Estate Transaction Method And System Abstract A method and system for brokering real estate

More information

Intangible Assets Web Site Costs

Intangible Assets Web Site Costs SIC Interpretation 32 Intangible Assets Web Site Costs In March 2002 the International Accounting Standards Board issued SIC-32 Intangible Assets Web Site Costs, which had originally been developed by

More information

ACCOUNTING STANDARDS BOARD INTERPRETATION OF THE STANDARDS OF GENERALLY RECOGNISED ACCOUNTING PRACTICE

ACCOUNTING STANDARDS BOARD INTERPRETATION OF THE STANDARDS OF GENERALLY RECOGNISED ACCOUNTING PRACTICE ACCOUNTING STANDARDS BOARD INTERPRETATION OF THE STANDARDS OF GENERALLY RECOGNISED ACCOUNTING PRACTICE INTANGIBLE ASSETS WEBSITE COSTS (IGRAP 16) Issued by the Accounting Standards Board March 2012 Acknowledgment

More information

Uniform Appraisal Dataset (UAD) Frequently Asked Questions

Uniform Appraisal Dataset (UAD) Frequently Asked Questions Uniform Appraisal Dataset (UAD) Frequently Asked Questions July 13, 2014 Updated for formatting May 15, 2017 The following provides answers to questions frequently asked about Fannie Mae s and Freddie

More information

Demonstrate knowledge of, and extract, cadastral data from Landonline

Demonstrate knowledge of, and extract, cadastral data from Landonline Page 1 of 5 Demonstrate knowledge of, and extract, cadastral data from Landonline Level 3 Credits 5 Purpose This unit standard is for people who are working in the surveying industry in jobs which involve

More information

HOW TO CREATE AN APPRAISAL

HOW TO CREATE AN APPRAISAL Page 1 7/19/2005 IMAGEsoft s Appraise Link Instruction Manual HOW TO CREATE AN APPRAISAL Start at the MAIN MENU. Click on APPRAISALS. The WORK WITH APPRAISALS screen appears. This screen stores your appraisals,

More information

IBM TRIRIGA Version 10 Release 5.3. Lease and Owned Property Contract Management User Guide IBM

IBM TRIRIGA Version 10 Release 5.3. Lease and Owned Property Contract Management User Guide IBM IBM TRIRIGA Version 10 Release 5.3 Lease and Owned Property Contract Management User Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 59.

More information

1 Valuations (Prospective Vendors (Sellers) or Landlords)

1 Valuations (Prospective Vendors (Sellers) or Landlords) PRIVACY NOTICE (Consumers) The Data Controller connected with the processing of your personal data is Breckon & Breckon. This is a group of companies operating under this brand name. These companies are:

More information

Land Titles, Sales & Property Based Services NSW

Land Titles, Sales & Property Based Services NSW Land Titles, Sales & Property Based Services NSW For further information and assistance please contact ABR Customer Service 1300 366 402 abrdata@abr.com.au www.abr.com.au Table of Contents LAND TITLES

More information

The Challenge to Implement International Cadastral Models Case Finland 1

The Challenge to Implement International Cadastral Models Case Finland 1 The Challenge to Implement International Cadastral Models Case Finland 1 Tarja MYLLYMÄKI and Tarja PYKÄLÄ, Finland Key words: cadastre, modelling, LADM, INSPIRE SUMMARY Efforts are currently made to develop

More information

EduMapping + JobMapping

EduMapping + JobMapping EduMapping + JobMapping Frans Rip Centre for Geoinformation, Wageningen UR 18 April 2011 1. What is EduMapping? Present GI-course descriptions Toekomst: mèt etiket Assessment by teacher Course content

More information

ELECTRONIC COMMERCE TRADING PARTNER AGREEMENT (Dated 10 November 2016)

ELECTRONIC COMMERCE TRADING PARTNER AGREEMENT (Dated 10 November 2016) ELECTRONIC COMMERCE TRADING PARTNER AGREEMENT (Dated 10 November 2016) This ELECTRONIC COMMERCE TRADING PARTNER AGREEMENT ( Agreement ) is made between Northrop Grumman Systems Corporation ("Buyer" or

More information

Demonstration Properties for the TAUREAN Residential Valuation System

Demonstration Properties for the TAUREAN Residential Valuation System Demonstration Properties for the TAUREAN Residential Valuation System Taurean has provided a set of four sample subject properties to demonstrate many of the valuation system s features and capabilities.

More information

Brownfield Land Registers Data Standard Vers 2 August Paul Davidson, CIO Sedgemoor District Council Director of Standards for istanduk

Brownfield Land Registers Data Standard Vers 2 August Paul Davidson, CIO Sedgemoor District Council Director of Standards for istanduk Brownfield Land Registers Data Standard Vers 2 August 2017 Paul Davidson, CIO Sedgemoor District Council Director of Standards for istanduk Operating since 2006 Formerly known as LeGSB All personnel are

More information

Asset. Capital Asset Management Module. Asset Lookup Form

Asset. Capital Asset Management Module. Asset Lookup Form Capital Asset Management Module Asset Under KFS Modules, Capital Asset Management, Reference, select the Lookup button in the Asset row. The next screen allows you to search the CAM system for assets that

More information

IBM TRIRIGA Version 10 Release 5.1. Lease and Owned Property Contract Management User Guide IBM

IBM TRIRIGA Version 10 Release 5.1. Lease and Owned Property Contract Management User Guide IBM IBM TRIRIGA Version 10 Release 5.1 Lease and Owned Property Contract Management User Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 61.

More information

PROCESSES IN CADASTRE: PROCESS MODEL FOR SERBIAN 3D CADASTRE

PROCESSES IN CADASTRE: PROCESS MODEL FOR SERBIAN 3D CADASTRE UNIVERSITY IN NOVI SAD, SERBIA FACULTY OF TECHNICAL SCIENCES PROCESSES IN CADASTRE: PROCESS MODEL FOR SERBIAN 3D CADASTRE Dubravka SLADIĆ, Aleksandra RADULOVIĆ and Miro GOVEDARICA 6th International FIG

More information

Listing Load Manual. for. Staff

Listing Load Manual. for. Staff Listing Load Manual for Staff 1 Listing Load Listing Load is the module that allows you to add a new listing, change listing information and make contractual changes such as status or price at any time

More information

MULTI-TENANT SOLUTION GUIDE

MULTI-TENANT SOLUTION GUIDE c MULTI-TENANT SOLUTION GUIDE Front Office 8.5 A solution guide to support Multi-Tenant implementations Contents 1.0 Introduction... 3 2.0 Solution Principles... 3 3.0 Licensing... 4 4.0 Integration &

More information

RICS property measurement 2nd edition: Basis for conclusions. Purpose

RICS property measurement 2nd edition: Basis for conclusions. Purpose RICS property measurement 2nd edition: Basis for conclusions Purpose This document has been prepared to accompany publication of the RICS property measurement 2nd edition in order to explain the rationale

More information

Challenge to Implement International Cadastral Models Case Finland

Challenge to Implement International Cadastral Models Case Finland FIG Articleof the Month April 20 Challenge to Implement International Cadastral Models Case Finland Tarja Myllymäki and Tarja Pykälä 200-04-5 The topics are In European level INSPIRE Experiences, similarities,

More information

Revision Sheet REVISION NUMBER DATE DESCRIPTION JULY, 16, 2018 LAUNCH ESCROW MANUAL. XCG TECH Xcgtech.com

Revision Sheet REVISION NUMBER DATE DESCRIPTION JULY, 16, 2018 LAUNCH ESCROW MANUAL. XCG TECH Xcgtech.com ESCROW MANUAL Revision Sheet REVISION NUMBER DATE DESCRIPTION 1.0.0 JULY, 16, 2018 LAUNCH ESCROW MANUAL XCG TECH Xcgtech.com TABLE OF CONTENTS CHAPTER 1 SECTION 1.1 LAYOUT SUBSECTION 1.1.A OVERVIEW PAGE

More information

The list below shows the errors that can occur during submission, as well as some details about each one.

The list below shows the errors that can occur during submission, as well as some details about each one. Identifying s Version: 1.5 Publish Date: 09/09/2013 When an appraisal is submitted to UCDP, the XML data will immediately be checked for errors. Some of these errors can cause the submission to fail, while

More information

Towards LADM country cadastral profile case Poland

Towards LADM country cadastral profile case Poland Towards LADM country cadastral profile case Poland Jarosław Bydłosz Department of Geomatics Faculty of Mining Surveying and Environmental Engineering International FIG workshop on the Land Administration

More information

A CADASTRAL GEODATA BASE FOR LAND ADMINISTRATION USING ARCGIS CADASTRAL FABRIC MODEL A CASE STUDY OF UWANI ENUGU, ENUGU STATE, NIGERIA

A CADASTRAL GEODATA BASE FOR LAND ADMINISTRATION USING ARCGIS CADASTRAL FABRIC MODEL A CASE STUDY OF UWANI ENUGU, ENUGU STATE, NIGERIA A CADASTRAL GEODATA BASE FOR LAND ADMINISTRATION USING ARCGIS CADASTRAL FABRIC MODEL A CASE STUDY OF UWANI ENUGU, ENUGU STATE, NIGERIA BY Ndukwu, Raphael. Ike Department of Geoinformatics & Surveying University

More information

Trackside-Trainborne FIS for RADIO IN-FILL

Trackside-Trainborne FIS for RADIO IN-FILL ERTMS/ETCS Trackside-Trainborne FIS for RADIO IN-FILL REF : ISSUE : DATE : 03/03/12 Company Technical Approval Management approval ALSTOM ANSALDO BOMBARDIER INVENSYS SIEMENS THALES Trackside-Trainborne

More information

OQOOD Off-Plan Property Management Solution

OQOOD Off-Plan Property Management Solution Emirates Real Estate Solutions (ERES) OQOOD Off-Plan Property Management Solution Property Developers Guide Version 1.1 http://www.oqood.ae/ Copyrights Emirates Real Estate Solutions (ERES) 2010. All Rights

More information

Section 13 IDX Defined: IDX affords MLS participants the ability to authorize limited electronic display of their listings by other participants.

Section 13 IDX Defined: IDX affords MLS participants the ability to authorize limited electronic display of their listings by other participants. SECTION 13. INTERNET DATA EXCHANGE (IDX) Section 13 IDX Defined: IDX affords MLS participants the ability to authorize limited electronic display of their listings by other participants. Section 13.1 Authorization:

More information

Network Working Group Request for Comments: Category: Best Current Practice D. Petrie SIPez LLC June 2009

Network Working Group Request for Comments: Category: Best Current Practice D. Petrie SIPez LLC June 2009 Network Working Group Request for Comments: 5589 BCP: 149 Category: Best Current Practice R. Sparks Tekelec A. Johnston, Ed. Avaya D. Petrie SIPez LLC June 2009 Session Initiation Protocol (SIP) Call Control

More information

Intangible Assets Web Site Costs

Intangible Assets Web Site Costs HK(SIC)-Int 32 Revised May 2014 September 2018 Effective for annual periods beginning on or after 1 January 2005 Hong Kong (SIC) Interpretation 32 Intangible Assets Web Site Costs COPYRIGHT Copyright 2018

More information

Schedule A. Citation 1 These regulations may be cited as the Land Registration Administration Regulations. Definitions 2 (1) In these regulations,

Schedule A. Citation 1 These regulations may be cited as the Land Registration Administration Regulations. Definitions 2 (1) In these regulations, Schedule A Regulations Respecting Administration of the Land Registration Act made by the Minister of Service Nova Scotia and Municipal Relations under Section 94 of Chapter 6 of the Acts of 2001, the

More information

Six Steps to a Completed Appraisal Report

Six Steps to a Completed Appraisal Report Six Steps to a Completed Appraisal Report Section 1 DataLog - Comparable Sales Database ClickFORMS - Report Processor Section 2 Addenda Section 3 Mini Sample - Approach Pages 1 Six Steps to a Completed

More information

Profile Definition for a Standardized Cadastral Model

Profile Definition for a Standardized Cadastral Model Hugh ASTKE, Canada Greg MULHOLLAND, Canada Rick NYARADY, Canada Key words: Cadastral Modeling, Profiles, Gap Analysis, Domain Experts SUMMARY The move towards a standardized cadastral domain model is a

More information

Regulation of the Minister of Finance 1

Regulation of the Minister of Finance 1 The present English text is furnished for information purposes only. The original Polish text published in the Journal of Laws is binding in all respects. Regulation of the Minister of Finance 1 of 27

More information

Profile Definition for a. Standardized Cadastral Model

Profile Definition for a. Standardized Cadastral Model Profile Definition for a www.caris.com Standardized Cadastral Model Hugh Aste, Rick Nyarady & Greg Mulholland Outline Our interest in the Core Cadastre Domain Model Identification of a practical need for

More information

.NZ REGISTRANT AGREEMENT CORE TERMS AND CONDITIONS

.NZ REGISTRANT AGREEMENT CORE TERMS AND CONDITIONS .NZ REGISTRANT AGREEMENT CORE TERMS AND CONDITIONS V1.2, 11 August 2017 MESSAGE TO REGISTRARS These are the core terms that requires in all agreements between registrars and registrants who use their services.

More information

BULGARIAN CADASTRE A GUARANTEE FOR THE OWNERSHIP RIGHTS IN IMMOVABLE PROPERTIES

BULGARIAN CADASTRE A GUARANTEE FOR THE OWNERSHIP RIGHTS IN IMMOVABLE PROPERTIES 4 TH INTERNATIONAL CONFERENCE RECENT PROBLEMS IN GEODESY AND RELATED FIELDS WITH INTERNATIONAL IMPORTANCE February 28 - March 2, 2007, Inter Expo Centre, Sofia, Bulgaria BULGARIAN CADASTRE A GUARANTEE

More information

Longleaf Pine REALTORS, Inc. RETS FEED or VOW FEED Order Form

Longleaf Pine REALTORS, Inc. RETS FEED or VOW FEED Order Form Longleaf Pine REALTORS, Inc. RETS FEED or VOW FEED Order Form Please Give Us A Call At 910-323-1421 Should You Have Any Questions Or Need Further Assistance. Your Information - All Fields Are Required

More information

RMS USER GUIDE. Version 17. Steps for the Doctor being Appraised Page 5 Steps for the Appraiser Page 31 Help Section Page 36

RMS USER GUIDE. Version 17. Steps for the Doctor being Appraised Page 5 Steps for the Appraiser Page 31 Help Section Page 36 RMS USER GUIDE Please use this guide if you are using the Revalidation Management System If you can see the RMS logo and your organisation s logo at the top of your screen you are using the correct user

More information

II. Policies Applicable to Principal Broker Subscribers VOWs.

II. Policies Applicable to Principal Broker Subscribers VOWs. MRIS Policy governing use of MRIS Listing Content in connection with Internet brokerage services offered by MRIS Subscribers operating a VOW (Virtual Office Website) I. Definitions and Scope of Policy.

More information

RSK Name Service. Specification. v1.31-en

RSK Name Service. Specification. v1.31-en RSK Name Service Specification v1.31-en 1 Index Index 2 Preamble 3 The RIF Ecosystem 4 RIF Token 4 RIF Open Standard (RIFOS) 4 Introduction 4 Components overview 4 Node 4 Name Format 5 Resolver 5 Registry

More information

I. Request for Proposal Overview

I. Request for Proposal Overview Connecticut Land Conservation Council c/o TNC 55 High Street Middletown, CT 06457 Contact: Sarah Pellegrino spellegrino@tnc.org Technical contact: Damon Hearne dhearne@ctwoodlands.org 860-346-2372 I. Request

More information

IQ Registrar Contract

IQ Registrar Contract Sub/. The First Party (CMC) Address.. (The Second Party), It's Address Reference to the powers granted to CMC under Section 5/ Tasks of Order 55 of 2004 in force, the First Party (CMC) grants a non transferable

More information

CITY OF ASPEN COMMUNITY DEVELOPMENT DEPARTMENT

CITY OF ASPEN COMMUNITY DEVELOPMENT DEPARTMENT COMMUNITY DEVELOPMENT DEPARTMENT GENERAL LAND USE PACKET Attached is an Application for review of Development that requires Land Use Review pursuant to The City of Aspen Land Use Code: Included in this

More information

IDX Display Checklist

IDX Display Checklist The Voice for Real Estate in Berkshire County 99 West Street, Suite 200, Pittsfield MA 01201 Telephone (413) 442-8049 Fax: (413) 448-2852 Providing members with the resources to practice real estate ethically,

More information

PROPERTY TAX IS A PRINCIPAL REVENUE SOURCE

PROPERTY TAX IS A PRINCIPAL REVENUE SOURCE TAXABLE PROPERTY VALUES: EXPLORING THE FEASIBILITY OF DATA COLLECTION METHODS Brian Zamperini, Jennifer Charles, and Peter Schilling U.S. Census Bureau* INTRODUCTION PROPERTY TAX IS A PRINCIPAL REVENUE

More information

A Complete, Free Solution for Cadastral Map Management

A Complete, Free Solution for Cadastral Map Management A Complete, Free Solution for Cadastral Map Management Gyula IVÁN Institute of Geodesy, Cartography & Remote Sensing (FÖMI) HUNGARY FIG Commission 7, Annual Meeting 11-15 September 2008., Verona, ITALY

More information

PEGA PLATFORM. Pega Multitenancy Administration Guide

PEGA PLATFORM. Pega Multitenancy Administration Guide PEGA PLATFORM 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or service marks

More information

GeoWarehouse Land Registry. Teranet Enterprises Inc.

GeoWarehouse Land Registry. Teranet Enterprises Inc. GeoWarehouse Land Registry Teranet Enterprises Inc. TABLE OF CONTENTS Neighoubourhood Sales... 1 Overview... 1 Find Neighbourhood Sales... 1 Neighbourhood Sales and Map... 6 Map Neighbourhood Sales...

More information

About Streams. Streams is 2017 by HousingLink

About Streams. Streams is 2017 by HousingLink About Streams Contents ABOUT STREAMS... 2 HOW TO USE STREAMS (at a high level)... 2 MORE ABOUT FILTERS THAN YOU WANT TO KNOW... 2 Search by... 3 Filter by... 3 Funding Source... 3 Funding Categories...

More information

IMPORTANT NOTICE. Credit Derivatives Product Management Simon Todd

IMPORTANT NOTICE. Credit Derivatives Product Management Simon Todd IMPORTANT NOTICE #: MS#78 ; TIW#104 Date: January 28, 2011 To: Distribution From: Legal Department Subject: Revisions to the MarkitSERV Operating Procedures and the Warehouse Trust Operating Procedures

More information

Integrating SAS and Geographic Information Systems for Regional Land Use Planning

Integrating SAS and Geographic Information Systems for Regional Land Use Planning Integrating SAS and Geographic Information Systems for Regional Land Use Planning ABSTRACT Bill Bass, Houston-Galveston Area Council, Houston, Tx The Houston-Galveston Area Council (H-GAC) provides regional

More information

RULES AND REGULATIONS. Binding Rules and Regulations of the Website: Rules and Regulations ).

RULES AND REGULATIONS. Binding Rules and Regulations of the Website:   Rules and Regulations ). RULES AND REGULATIONS Binding Rules and Regulations of the Website: https://cryptonsq.com/(hereinafter: Rules and Regulations ). 1. Rules and definitions The Rules and Regulations define the principles,

More information

Comparables Sales Price (Old Version)

Comparables Sales Price (Old Version) Chapter 486 Comparables Sales Price (Old Version) Introduction Appraisers often estimate the market value (current sales price) of a subject property from a group of comparable properties that have recently

More information

etransfer Form User Guide The Property Registry s

etransfer Form User Guide The Property Registry s s etransfer Form User Guide A service provider for the Province of Manitoba Most recent update: 2018-01-08 Version 2.03 Table of Contents Purpose... 4 General Guidelines for Completion... 4 Requirements...

More information

Uniform Collateral Data Portal (UCDP) General User Guide October 2017

Uniform Collateral Data Portal (UCDP) General User Guide October 2017 Uniform Collateral Data Portal (UCDP) General User Guide October 2017 direction of their regulator, the Federal Housing Finance Agency. 1 of 100 direction of their regulator, the Federal Housing Finance

More information

Property Online Provincial Query User Agreement Instructions. Filling Out the Agreement

Property Online Provincial Query User Agreement Instructions. Filling Out the Agreement Property Online Provincial Query User Agreement Instructions This agreement is for use of Property Online, provincial query access allows provincial government users to query land ownership and related

More information

2016 REPORT OF THE TITLE EXAMINATION STANDARDS COMMITTEE OF THE REAL PROPERTY LAW SECTION

2016 REPORT OF THE TITLE EXAMINATION STANDARDS COMMITTEE OF THE REAL PROPERTY LAW SECTION 2016 REPORT OF THE TITLE EXAMINATION STANDARDS COMMITTEE OF THE REAL PROPERTY LAW SECTION Proposed Amendments to Title Standards for 2017, to be presented for approval by the House of Delegates, Oklahoma

More information

Property Online Query User Agreement Instructions. Filling Out the Agreement

Property Online Query User Agreement Instructions. Filling Out the Agreement Property Online Query User Agreement Instructions This agreement is for use of Property Online, a monthly subscription service. Query access allows users to query land ownership and related property information.

More information

QUESTIONNAIRE. 1. Authorizing statute(s) citation West Virginia Code and 11-1C-4(d)

QUESTIONNAIRE. 1. Authorizing statute(s) citation West Virginia Code and 11-1C-4(d) QUESTIONNAIRE (Please include a copy of this form with each filing of your rule: Notice of Public Hearing or Comment Period; Proposed Rule, and if needed, Emergency and Modified Rule.) DATE: 6/8/15 TO:

More information

Hazardous Materials in Project Development Additional Guidance

Hazardous Materials in Project Development Additional Guidance Hazardous Materials in Project Development Additional Guidance Contents:...2 AASHTO Guidance...3 USDOT Brownfields Guidance...4 ASTM Standard Practices...6 Hazardous Materials in Project Development 1

More information

Education & Training Plan Real Estate Law Professional Certificate Program with Externship

Education & Training Plan Real Estate Law Professional Certificate Program with Externship C.15.57 (Created 07-17-2017) OHICE OF P ROFESSIONAL AND CONTINUING EDUCATION Office of Professional & Continuing Education 301 OD Smith Hall Auburn, AL 36849 http://www.auburn.edu/mycaa Contact: Shavon

More information

Data Co-op 2.3 Release Notes March The following changes and enhancements have been made to the MLS Data Co-op: Search Tab

Data Co-op 2.3 Release Notes March The following changes and enhancements have been made to the MLS Data Co-op: Search Tab Data Co-op 2.3 Release Notes March 2013 The following changes and enhancements have been made to the MLS Data Co-op: Search Tab The listing number and address search have been combined into one field (they

More information

54 System Design Collaborate: Agent Task Instructions

54 System Design Collaborate: Agent Task Instructions 1 54 System Design Collaborate: Agent Task Instructions Version Date Description By 1.0 1/25/2013 Final Lizette Patterson Table of Contents Profile information... 2 Agent (Listing) Confirmation Task...

More information

RPSV4 Users ORPTS Regional Directors and Managers ORPTS Customer Relationship Managers ORPTS Regional V4 Support Staff

RPSV4 Users ORPTS Regional Directors and Managers ORPTS Customer Relationship Managers ORPTS Regional V4 Support Staff TO: FROM: RPSV4 Users ORPTS Regional Directors and Managers ORPTS Customer Relationship Managers ORPTS Regional V4 Support Staff Michael Griffen, RPS Support Group DATE: December 5 2016 SUBJECT: RPSV4

More information

Universal Geo-database Connector Interface Component (UG-CIC) For Virtual Web-base GIS Server Essential For Real Estate Industry Uses

Universal Geo-database Connector Interface Component (UG-CIC) For Virtual Web-base GIS Server Essential For Real Estate Industry Uses Universal Geo-database Connector Interface Component (UG-CIC) For Virtual Web-base GIS Server Essential For Real Estate Industry Uses Jad Jarroush & Dr. Kobi Zaid Zaid Orniv Group L.T.D Israel kobi_z@zaidorniv.co.il

More information

WAYNE COUNTY REGISTER OF DEEDS COMMERCIAL USER AGREEMENT

WAYNE COUNTY REGISTER OF DEEDS COMMERCIAL USER AGREEMENT WAYNE COUNTY REGISTER OF DEEDS COMMERCIAL USER AGREEMENT THIS COMMERCIAL USER AGREEMENT, ( Agreement ) is between the Charter County of Wayne, Michigan, through the OFFICE OF THE WAYNE COUNTY REGISTER

More information

WinTar-Tenant Accts Receivable User' s Guide

WinTar-Tenant Accts Receivable User' s Guide WinTar-Tenant Accts Receivable User' s Guide Copyright HAB INC June 2009 All Rights Reserved Revised August 2011 2 P a g e 3 P a g e WinTAR Users Guide Table of Contents WinTAR Users Guide... 4 Table of

More information

M.L.S., INC. A wholly-owned subsidiary of the Northwest Louisiana Association of REALTORS 2036 East 70 th Street Shreveport, LA 71105

M.L.S., INC. A wholly-owned subsidiary of the Northwest Louisiana Association of REALTORS 2036 East 70 th Street Shreveport, LA 71105 M.L.S., INC. A wholly-owned subsidiary of the Northwest Louisiana Association of REALTORS 2036 East 70 th Street Shreveport, LA 71105 IDX USER AGREEMENT FOR RETS FEED This Agreement is a legally binding

More information

Security Administrator (SA) Training Agency Agreements

Security Administrator (SA) Training Agency Agreements Security Administrator (SA) Training Agency Agreements Training Topics Introduction to Agency Agreements How to create an Agency Agreement How to approve an Agency Agreement How to terminate an Agency

More information

Threading the needle. How good information can help you make the right real estate investment decisions in turbulent times.

Threading the needle. How good information can help you make the right real estate investment decisions in turbulent times. Threading the needle How good information can help you make the right real estate investment decisions in turbulent times. Find threads of opportunity that can lead to your next big investment in real

More information

Project Appraisal Guidelines for National Roads Unit Project Appraisal Plan

Project Appraisal Guidelines for National Roads Unit Project Appraisal Plan Project Appraisal Guidelines for National Roads Unit 2.1 - Project Appraisal Plan October 2016 TRANSPORT INFRASTRUCTURE IRELAND (TII) PUBLICATIONS About TII Transport Infrastructure Ireland (TII) is responsible

More information

ENVIRONMENT CANTERBURY S WEB-BASED CONTAMINATED LAND INFORMATION TRANSFER SYSTEM

ENVIRONMENT CANTERBURY S WEB-BASED CONTAMINATED LAND INFORMATION TRANSFER SYSTEM ENVIRONMENT CANTERBURY S WEB-BASED CONTAMINATED LAND INFORMATION TRANSFER SYSTEM Davina McNickel 1, Helen Davies 2, Vincent Salomon 2 1 Environment Canterbury, PO Box 345, Christchurch. Telephone: 03 365

More information

The Development Strategy for Cadastre and Land Register in Finland

The Development Strategy for Cadastre and Land Register in Finland 1 2 The Development Strategy for and Land in Finland Arvo Kokkonen Ministry of Agriculture and Forestry Facts and figures of Finland - land area 304 530 km² - water area 33 615 km² - total area 338 195

More information

WebMoney Transfer Passport issuance Regulations

WebMoney Transfer Passport issuance Regulations WebMoney Transfer Passport issuance Regulations These regulations determine order and rules of WebMoney Passport Service (further Service) partnership program participants in the matter of Personal and

More information

2007/2008 H [ON-LINE REAL ESTATE MANAGEMENT SYSTEM PROPOSAL] Proposal for the final year project

2007/2008 H [ON-LINE REAL ESTATE MANAGEMENT SYSTEM PROPOSAL] Proposal for the final year project 2007/2008 H [ON-LINE REAL ESTATE MANAGEMENT SYSTEM PROPOSAL] Proposal for the final year project A proposal for On-line Real Estate Management System (Maintain advertising, purchasing, selling real estates)

More information

The ecrv Submit application opens with the following important warning message on privacy:

The ecrv Submit application opens with the following important warning message on privacy: Submit Form Tabs Buyers and Sellers Property Sales Agreement Supplementary Submitter The ecrv form is a single Web-page form with entry fields, choices and selections in multiple tabs for submitting a

More information

Introduction to Software Architecture (1)

Introduction to Software Architecture (1) Introduction to Software Architecture (1) Wendy Liu 2003 (Acknowledgement: part of the content is contributed by Peter Kanareitsev) Architect s roles not just technology Creating the right technical vision

More information

IDX Paperwork Cover Sheet

IDX Paperwork Cover Sheet IDX Paperwork Cover Sheet IMPORTANT This cover sheet MUST be filled out and returned via Email or Fax with your IDX paperwork. If this cover sheet is not included your IDX may not be approved and set-up

More information

Office of the County Auditor. Broward County Property Appraiser Report on Transition Review Services

Office of the County Auditor. Broward County Property Appraiser Report on Transition Review Services Office of the County Auditor Broward County Property Appraiser Report on Transition Review Services January 14, 2005 Table of Contents BACKGROUND AND SCOPE...3 FINDINGS AND RECOMMENDATIONS...3 1. Financial

More information

A NOMINAL ASSET VALUE-BASED APPROACH FOR LAND READJUSTMENT AND ITS IMPLEMENTATION USING GEOGRAPHICAL INFORMATION SYSTEMS

A NOMINAL ASSET VALUE-BASED APPROACH FOR LAND READJUSTMENT AND ITS IMPLEMENTATION USING GEOGRAPHICAL INFORMATION SYSTEMS A NOMINAL ASSET VALUE-BASED APPROACH FOR LAND READJUSTMENT AND ITS IMPLEMENTATION USING GEOGRAPHICAL INFORMATION SYSTEMS by Tahsin YOMRALIOGLU B.Sc., M.Sc. A thesis submitted for the Degree of Doctor of

More information

VISION ASSET REGISTER TABLE OF CONTENTS

VISION ASSET REGISTER TABLE OF CONTENTS VISION ASSET REGISTER TABLE OF CONTENTS Introduction... 2 Outlook of the Asset Register Software... 2 Setups... 4 Asset Location... 5 Asset Type/Group... 5 Currencies... 7 Custodian... 7 Cost Center/Project

More information

Crestview Realty. John Doe, Salesperson REALTOR Franchise or office logo

Crestview Realty. John Doe, Salesperson REALTOR Franchise or office logo The Canadian Real Estate Association (CREA) owns a number of trademarks. Some of these marks including REALTOR, Multiple Listing Service and MLS are exclusively licensed to members of CREA to use in the

More information

A Complete Guide to Creating a Tenancy

A Complete Guide to Creating a Tenancy A Complete Guide to Creating a Tenancy 1 This guide initially describes all the steps that will need to be in place prior to a tenancy being created. To Create Instruction: Area Applicant Property Landlord

More information

FOR MIAAOR USE FIRM NAME & NUMBER PROVIDER FAR MARKETLINX MIAAOR TYPE OR FEED RETS FTP PURPOSE IDX VOW FIRM SPECIFIC AGENT MIAAOR INFORMATION PAGE AND

FOR MIAAOR USE FIRM NAME & NUMBER PROVIDER FAR MARKETLINX MIAAOR TYPE OR FEED RETS FTP PURPOSE IDX VOW FIRM SPECIFIC AGENT MIAAOR INFORMATION PAGE AND FOR MIAAOR USE FIRM NAME & NUMBER PROVIDER FAR MARKETLINX MIAAOR TYPE OR FEED RETS FTP PURPOSE IDX VOW FIRM SPECIFIC AGENT MIAAOR INFORMATION PAGE AND SIGNATURES MIAAOR INFORMATION MIAAOR Staff Signature

More information

Establishing a Wetland Bank in Minnesota

Establishing a Wetland Bank in Minnesota Establishing a Wetland Bank in Minnesota Updated February 1, 2018 This document provides a general summary of the key steps in establishing an individual wetland bank site within the state wetland banking

More information

Internet Data Exchange (IDX)

Internet Data Exchange (IDX) Internet Data Exchange (IDX) Section 18 IDX Defined IDX affords MLS participants ability to authorize limited electronic display and delivery of their listings by other participants via the following authorized

More information

Registrar Agreement. for. Domain Names under. the cctld.ch and.li

Registrar Agreement. for. Domain Names under. the cctld.ch and.li Registrar Agreement for Domain Names under the cctld.ch and.li between SWITCH Werdstrasse 2 P.O. Box CH-8021 Zurich hereinafter Registry and Party2 Contact Street & Number Zip & Place Country with Registrar

More information

ICE Clear Netherlands B.V. Default Porting Notice

ICE Clear Netherlands B.V. Default Porting Notice ICE Clear Netherlands B.V. Default Porting Notice To: ICE Clear Netherlands B.V. Hoogoorddreef 7 1101 BA Amsterdam, the Netherlands IceclearnetherlandsRisk@theice.com From: Full legal name of Customer:

More information

PROPERTY TAX TIPS AND TRICKS

PROPERTY TAX TIPS AND TRICKS PROPERTY TAX TIPS AND TRICKS Presented By: Vicki Chiasson & Wes Pogorzelski PROVEN GOVERNMENT TECHNOLOGY LEADERSHIP Enhanced Levy Calculation Tax levies take a long time to generate Corrections may require

More information

IDX Paperwork Cover Sheet

IDX Paperwork Cover Sheet IDX Paperwork Cover Sheet IMPORTANT This cover sheet MUST be filled out and returned via Email or Fax with your IDX paperwork. If this cover sheet is not included your IDX may not be approved and set-up

More information

.BI cctld REGISTRAR AGREEMENT

.BI cctld REGISTRAR AGREEMENT .BI cctld REGISTRAR AGREEMENT BETWEEN: Le Centre National de l Informatique s.a.,.bi cctld Manager, established at 157, Chaussée P.L. Rwagasore, BP 2270 Bujumbura, Burundi, sponsoring organization of BI

More information

Object Oriented Unified Real Estate Registry for a Good Spatial Data Management

Object Oriented Unified Real Estate Registry for a Good Spatial Data Management Object Oriented Unified Real Estate Registry for a Good Spatial Data Management Gyula IVÁN Gábor SZABÓ Zoltán WENINGER Institute of Geodesy, Cartography and Remote Sensing (FÖMI), Hungary Workshop on e-governance,

More information

ARGUS Valuation Capitalisation. v Change History

ARGUS Valuation Capitalisation. v Change History ARGUS Valuation Capitalisation v2.50.010 Change History Last Updated: 10/11/2010 While ARGUS endeavors to correct known issues, software is provided "as is" without warranty of any kind, express or implied.

More information

Cadastral Information System for M.I. Wushishi Housing Estate.

Cadastral Information System for M.I. Wushishi Housing Estate. Cadastral Information System for M.I. Wushishi Housing Estate. Kemiki O. A 1 * Odumosu J.O 2 Ayoola A.B 1 Popoola N.I 1 1, Department of Estate Management and Valuation, Federal University of Technology,

More information

WCMS User s Guide. Effective August, 2013

WCMS User s Guide. Effective August, 2013 WCMS User s Guide Effective August, 2013 Your Computer s Settings: WCMS is currently compatible with Internet Explorer only using any other web browser such as Mozilla Firefox, Google Chrome, etc. may

More information

CIG Sub Group CREDIT : Consent = Confirmation

CIG Sub Group CREDIT : Consent = Confirmation CIG Sub Group CREDIT : Consent = Confirmation ISDA Presentation : Credit Consent = Confirmation October 2010 (REVISED) Credit : Consent = Confirmation Contents Overview How does this change impact you?

More information

Business Process Management

Business Process Management Paolo Bottoni Lecture 6: Collaborations and Coreographies Adapted from the slides for the book : Dumas, La Rosa, Mendling & Reijers: Fundamentals of, Springer 2013 http://courses.cs.ut.ee/2013/bpm/uploads/main/(iab203.1.2015-week-4_nc,

More information