Yandex.Dictionary API Developer's guide

Size: px
Start display at page:

Download "Yandex.Dictionary API Developer's guide"

Transcription

1

2 .. Version 1.0 Document build date: This volume is a part of Yandex technical documentation. Yandex helpdesk site: Yandex LLC. All rights reserved. Copyright Disclaimer Yandex (and its applicable licensor) has exclusive rights for all results of intellectual activity and equated to them means of individualization, used for development, support, and usage of the service. It may include, but not limited to, computer programs (software), databases, images, texts, other works and inventions, utility models, trademarks, service marks, and commercial denominations. The copyright is protected under provision of Part 4 of the Russian Civil Code and international laws. You may use or its components only within credentials granted by the Terms of Use of or within an appropriate Agreement. Any infringements of exclusive rights of the copyright owner are punishable under civil, administrative or criminal Russian laws. Contact information Yandex LLC Phone: pr@yandex-team.ru Headquarters: 16 L'va Tolstogo St., Moscow, Russia

3 Contents About this guide... 4 API description... 4 Formatting results... 4 API methods... 5 getlangs method... 5 lookup method... 6 Index... 10

4 4 About this guide The developer's guide describes the and explains how to enable and use the service. The guide is intended for web developers who want their web site pages to have a feature that searches for words in the Yandex online dictionary. API description Attention! All API methods are accessed using a key. Please fill out this simple form to get your free API key. To access the over HTTP, there are XML and JSON (JSONP) interfaces available. All the interfaces provide identical functionality and use the same set of input parameters. The XML interface returns a response in the form of an XML document, while the JSON interface returns JavaScript objects instead of XML elements, but with the same names and semantics; the JSONP interface returns the same JavaScript objects, but by calling a callback function with the specified name. Formatting results When formatting translation results, you must follow the rules set in the License for using the Yandex.Dictionary service. Each page that uses data from the Yandex.Dictionary service must display the text "Powered by Yandex.Dictionary" with an active hyperlink to the page The font size for the link must be no smaller than the font size for the main text, and the color must match the font color of the main text on the page.

5 API methods 5 API methods getlangs method Returns a list of translation directions supported by the service. Description string[ getlangs(string key); Input parameters List of input parameters: Parameter Type Description Mandatory key string API key. Get a free API key on this page. Sample request: XML interface: JSON interface: JSONP interface (for the "mycallback" function): key=apikey&callback=mycallback Returns In the XML interface it returns an XML document with the root element ArrayOfString. For example: <?xml version="1.0" encoding="utf-8"?> <ArrayOfString> <string>ru-ru</string> <string>ru-en</string> <string>ru-pl</string> <string>ru-uk</string> <string>ru-de</string> <string>ru-fr</string>... <string>it-ru</string> <string>it-en</string> <string>tr-ru</string> <string>tr-en</string> </ArrayOfString> Error codes Code Value Description ERR_KEY_INVALID 401 Invalid API key. ERR_KEY_BLOCKED 402 This API key has been blocked.

6 API methods 6 In the JSON interface, instead of XML elements, JavaScript objects are returned with the same names and semantics: In the JSONP interface, the same JavaScript objects are returned to a callback function (for example, "mycallback"): lookup method Searches for a word or phrase in the dictionary and returns an automatically generated dictionary entry. Description DicResult lookup(string key, string text, string lang, string ui, int flags); Input parameters Input parameters can be passed either using an HTTP GET request (see the example), or using an HTTP POST request where the parameters are passed in the body of the HTTP request. Sample request: XML interface: JSON interface: JSONP interface (for the "mycallback" function): ["ru-ru","ru-en","ru-pl","ru-uk","ru-de","ru-fr","ru-es","ru-it","ru-tr","enru","en-en","en-de","en-fr","en-es","en-it","en-tr","pl-ru","uk-ru","de-ru","deen","fr-ru","fr-en","es-ru","es-en","it-ru","it-en","tr-ru","tr-en" mycallback(["ru-ru","ru-en","ru-pl","ru-uk","ru-de","ru-fr","ru-es","ru-it","rutr","en-ru","en-en","en-de","en-fr","en-es","en-it","en-tr","pl-ru","uk-ru","deru","de-en","fr-ru","fr-en","es-ru","es-en","it-ru","it-en","tr-ru","tr-en") List of input parameters. Parameter Type Description Mandatory key string API key. Get a free API key on this page. lang string Translation direction (for example, "en-ru"). Set as a pair of language codes separated by a hyphen. For example, "en-ru" specifies to translate from English to Russian. Tip: The service does not just work with translation dictionaries. For example, you can set the direction "ru-ru" or "en-en" to get all the possible meanings of the word you are searching for in Russian or English. text string The word or phrase to find in the dictionary. Optional ui string The language of the user's interface for displaying names of parts of speech in the dictionary entry.

7 API methods 7 Parameter Type Description flags int Search options (bitmask of flags). Possible values: FAMILY = 0x0001 Apply the family search filter. MORPHO = 0x0004 Enable searching by word form. POS_FILTER = 0x0008 Enable a filter that requires matching parts of speech for the search word and translation. Returns In the XML interface, it returns the DicResult structure, which contains a dictionary entry that is generated automatically based on search results. For example: <DicResult> <head/> <def pos="noun" ts="taɪm"> <text>time</text> <tr pos="существительное"> <text>время</text> <syn> <text>раз</text> </syn> <syn> <text>тайм</text> </syn> <mean> <text>timing</text> </mean> <mean> <text>fold</text> </mean> <mean> <text>half</text> </mean> <ex> <text>prehistoric time</text> <tr> <text>доисторическое время</text> </tr> </ex> <ex> <text>hundredth time</text> <tr> <text>сотый раз</text> </tr> </ex> <ex> <text>time-slot</text> <tr> <text>тайм-слот</text> </tr> </ex> </tr> </def> </DicResult> Elements of the XML schema for the DicResult response Element head def Description Result header (not used). Array of dictionary entries. A transcription of the search word may be provided in the ts attribute.

8 API methods 8 Element tr syn mean ex Description Array of translations. Array of synonyms. Array of meanings. Array of examples. Attributes used in the elements def, tr, syn, mean, and ex Attribute text pos Description Text of the entry, translation, or synonym (mandatory). Part of speech (may be omitted). Error codes Code Value Description ERR_OK 200 Operation completed successfully. ERR_KEY_INVALID 401 Invalid API key. ERR_KEY_BLOCKED 402 This API key has been blocked. ERR_DAILY_REQ_LIMIT _EXCEEDED 403 Exceeded the daily limit on the number of requests. ERR_TEXT_TOO_LONG 413 The text size exceeds the maximum. ERR_LANG_NOT_SUPPOR TED 501 The specified translation direction is not supported. In the JSON interface, instead of XML elements, JavaScript objects are returned with the same names and semantics: { "head": {, "def": [ { "text": "time", "pos": "noun", { "text": "время", "pos": "существительное", "syn": [ { "text": "раз", { "text": "тайм", "mean": [ { "text": "timing", { "text": "fold", { "text": "half", "ex" : [ { "text": "prehistoric time", { "text": "доисторическое время", { "text": "hundredth time", { "text": "сотый раз", { "text": "time-slot",

9 API methods 9 { "text": "тайм-слот" In the JSONP interface, the same JavaScript objects are returned to a callback function (for example, "mycallback"): mycallback({ "head": {, "def": [ { "text": "time", "pos": "noun", { "text": "время", "pos": "существительное", "syn": [ { "text": "раз", { "text": "тайм", "mean": [ { "text": "timing", { "text": "fold", { "text": "half", "ex" : [ { "text": "prehistoric time", { "text": "доисторическое время", { "text": "hundredth time", { "text": "сотый раз", { "text": "time-slot", { "text": "тайм-слот" )

10 Index getlangs 5 JSON 4 6, 8 JSONP 5, 6, 9 lookup 6 XML 5 7

11

Yandex.Maps API Background theory

Yandex.Maps API Background theory 8.02.2018 .. Version 1.0 Document build date: 8.02.2018. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2018 Yandex LLC. All rights reserved.

More information

Yandex Maps API YMapsML Language Reference

Yandex Maps API YMapsML Language Reference 19.12.2017 .. Version 2.0 Document build date: 19.12.2017. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2017 Yandex LLC. All rights reserved.

More information

Yandex.Webmaster API Developer's guide

Yandex.Webmaster API Developer's guide 25.04.2013 .. Version 1.0 Document build date: 25.04.2013. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2013 Yandex LLC. All rights reserved.

More information

Yandex.Widgets Quick start

Yandex.Widgets Quick start 19.10.2018 .. Version 2 Document build date: 19.10.2018. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2018 Yandex LLC. All rights reserved.

More information

Application Notes for Yandex Speechkit Speech Recognition 1.6 with Avaya Aura Experience Portal Issue 1.0

Application Notes for Yandex Speechkit Speech Recognition 1.6 with Avaya Aura Experience Portal Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Yandex Speechkit Speech Recognition 1.6 with Avaya Aura Experience Portal 7.0.1 - Issue 1.0 Abstract These application notes describe the

More information

User Interaction: jquery

User Interaction: jquery User Interaction: jquery Assoc. Professor Donald J. Patterson INF 133 Fall 2012 1 jquery A JavaScript Library Cross-browser Free (beer & speech) It supports manipulating HTML elements (DOM) animations

More information

Reviewing the API Documentation

Reviewing the API Documentation About the Cisco APIC-EM API Documentation, page 1 Testing the Cisco APIC-EM APIs, page 6 About the Cisco APIC-EM API Documentation Cisco APIC-EM controller provides interactive, northbound Representational

More information

One Identity Starling Two-Factor Authentication. Administration Guide

One Identity Starling Two-Factor Authentication. Administration Guide One Identity Starling Two-Factor Authentication Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Kaspersky Anti-Virus 8.0 for Lotus Domino Administrator s Guide

Kaspersky Anti-Virus 8.0 for Lotus Domino Administrator s Guide Kaspersky Anti-Virus 8.0 for Lotus Domino Administrator s Guide APPLICATION VERSION: 8.0 Dear User! Thank you for choosing our product. We hope that this document will help you in your work and will provide

More information

Oracle Revenue Management and Billing. File Upload Interface (FUI) - User Guide. Version Revision 1.1

Oracle Revenue Management and Billing. File Upload Interface (FUI) - User Guide. Version Revision 1.1 Oracle Revenue Management and Billing Version 2.6.0.1.0 File Upload Interface (FUI) - User Guide Revision 1.1 E97081-01 May, 2018 Oracle Revenue Management and Billing File Upload Interface (FUI) - User

More information

USER GUIDE KASPERSKY MOBILE SECURITY 8.0

USER GUIDE KASPERSKY MOBILE SECURITY 8.0 USER GUIDE KASPERSKY MOBILE SECURITY 8.0 Dear User! Thank you for choosing our product. We hope that this documentation will help you in your work and will provide answers regarding this software product.

More information

Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide. March 2016

Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide. March 2016 Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide March 2016 Original Issued Date: March 2006 Vision / Serduct version: 03.x Author Product: MICROS Opera 3.x Copyright

More information

Kaspersky Anti-Virus 8.0 for Lotus Domino Administrator's Guide

Kaspersky Anti-Virus 8.0 for Lotus Domino Administrator's Guide Kaspersky Anti-Virus 8.0 for Lotus Domino Administrator's Guide APPLICATION VERSION: 8.0 MAINTENANCE PACK 2 Dear User, Thank you for choosing our product. We hope that this documentation will help you

More information

(Document Insight Evaluation Title) Quick Start Guide (Product Version 10.0

(Document Insight Evaluation Title) Quick Start Guide (Product Version 10.0 AppSense Insight Environment Management Application Performance DataNow Manager Center (Document Insight Evaluation Title) Quick Start Guide (Product Version 10.0 Version) AppSense Insight - Evaluation

More information

ADN. System Installer. Instruction manual

ADN. System Installer. Instruction manual ADN System Installer Instruction manual Content Content Installation requirements... 4 Selecting updates... 4 ADN System Update... 5 Establishing the connection... 5 Overview of the update stage window...

More information

Avaya Software Keycode Installation Guide

Avaya Software Keycode Installation Guide Avaya Software Keycode Installation Guide 2010 Avaya Inc. P0607323 04 2010 Avaya Inc. All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document

More information

Apache UIMA ConceptMapper Annotator Documentation

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

More information

TRAINING GUIDE. Lucity Web Services APIs

TRAINING GUIDE. Lucity Web Services APIs TRAINING GUIDE Lucity Web Services APIs Lucity Web Services APIs Lucity offers several web service APIs. This guide covers the Lucity Citizen Portal API as well as the. Contents How it Works... 2 Basics...

More information

Lifecycle Manager Governance API

Lifecycle Manager Governance API Lifecycle Manager Governance API Lifecycle Manager Governance API Version 7.0 July, 2015 Copyright Copyright 2015 Akana, Inc. All rights reserved. Trademarks All product and company names herein may be

More information

BlackBerry AtHoc Networked Crisis Communication. BlackBerry AtHoc API Quick Start Guide

BlackBerry AtHoc Networked Crisis Communication. BlackBerry AtHoc API Quick Start Guide BlackBerry AtHoc Networked Crisis Communication BlackBerry AtHoc API Quick Start Guide Release 7.6, September 2018 Copyright 2018 BlackBerry Limited. All Rights Reserved. This document may not be copied,

More information

Coveo Platform 7.0. Jive Connector Guide

Coveo Platform 7.0. Jive Connector Guide Coveo Platform 7.0 Jive Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market conditions,

More information

Certification Test Plan SSRF Conformance for OpenSSRF Software v Document WINNF-14-S-0023

Certification Test Plan SSRF Conformance for OpenSSRF Software v Document WINNF-14-S-0023 Certification Test Plan SSRF Conformance for OpenSSRF Software v3.1.0 Document WINNF-14-S-0023 Version V1.0.0 10 February 2015 TERMS, CONDITIONS & NOTICES This document has been prepared by the Open SSRF

More information

Kaspersky Security Center 10 Web Console. User Guide

Kaspersky Security Center 10 Web Console. User Guide Kaspersky Security Center 10 Web Console User Guide Dear User, Thank you for your trust! We hope that this document will help you in your work and will provide answers regarding this software product.

More information

WEBFLEET Hours of Service app Getting Started Guide

WEBFLEET Hours of Service app Getting Started Guide WEBFLEET Hours of Service app Getting Started Guide Contents Get going 3 Welcome... 3 Logging into the app... 3 Setting up the app... 3 What's on the screen 4 Home view... 4 Main menu... 5 Daily log view...

More information

Product Version notes PLDS ID. CE Platform OVA CE 3.0 Beta GA MD5 Sum - 2ae0dd c12e5c5f d5eba321fe CE Platform ISO (for upgrades)

Product Version notes PLDS ID. CE Platform OVA CE 3.0 Beta GA MD5 Sum - 2ae0dd c12e5c5f d5eba321fe CE Platform ISO (for upgrades) Approved Software Combination Version or Approved Combination Product Version notes PLDS ID CE Platform OVA CE 3.0 Beta GA MD5 Sum - 2ae0dd71342412c12e5c5f d5eba321fe CE Platform ISO (for upgrades) System

More information

Determining dependencies in Cúram data

Determining dependencies in Cúram data IBM Cúram Social Program Management Determining dependencies in Cúram data In support of data archiving and purging requirements Document version 1.0 Paddy Fagan, Chief Architect, IBM Cúram Platform Group

More information

Kaspersky Administration Kit 8.0 GETTING STARTED

Kaspersky Administration Kit 8.0 GETTING STARTED Kaspersky Administration Kit 8.0 GETTING STARTED APPLICATION VERSION: 8.0 CRITICAL FIX 2 Dear User! Thank you for choosing our product. We hope that this document will help you in your work and will provide

More information

SonicWall Directory Connector with SSO 4.1.6

SonicWall Directory Connector with SSO 4.1.6 SonicWall Directory Connector with SSO 4.1.6 November 2017 These release notes provide information about the SonicWall Directory Connector with SSO 4.1.6 release. Topics: About Directory Connector 4.1.6

More information

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit Oracle Cloud Mobile Cloud Service Known Issues 18.1.3 E93163-01 February 2018 General MCS Instance Has Predefined Storage Limit Each MCS instance has a set storage space that can t be changed manually.

More information

IBM Security QRadar Version Customizing the Right-Click Menu Technical Note

IBM Security QRadar Version Customizing the Right-Click Menu Technical Note IBM Security QRadar Version 7.2.0 Technical Note Note: Before using this information and the product that it supports, read the information in Notices and Trademarks on page 3. Copyright IBM Corp. 2012,

More information

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS Introduction This document sets forth the terms and conditions ("Terms and Conditions") governing your use of the MeridianHealth.com Web site ("Web Site")

More information

Accessibility Solution. Administrator's Guide

Accessibility Solution. Administrator's Guide Accessibility Solution Administrator's Guide September 2017 www.lexmark.com Contents 2 Contents Overview... 3 Configuring the application...4 Setting up user access... 4 Restricting printer functions...

More information

Firmware Update Guide

Firmware Update Guide Firmware Update Guide April 2018 www.lexmark.com Contents 2 Contents Change history... 3 Overview... 4 Updating the firmware... 5 Updating the firmware using Virtual Solution Center... 5 Updating the firmware

More information

ERDAS TITAN Client 9.3 Localization Guide. August 2008

ERDAS TITAN Client 9.3 Localization Guide. August 2008 ERDAS TITAN Client 9.3 Localization Guide August 2008 Copyright 2008 ERDAS, Inc. All rights reserved. Printed in the United States of America. The information contained in this document is the exclusive

More information

Affixing the ISAN. Possibilities Technical specifications

Affixing the ISAN. Possibilities Technical specifications Affixing the ISAN Possibilities Technical specifications 1 The ISAN Identifier ISO 15706 Root Episode Version ISAN 1234-5678-9101-0004-X-0000-00A1-Y Check Serie Episode Work Version 1234-5678-9101-0000-E-0000-0000-A

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Coveo Platform 6.5. Microsoft SharePoint Connector Guide

Coveo Platform 6.5. Microsoft SharePoint Connector Guide Coveo Platform 6.5 Microsoft SharePoint Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

SOA Software Service Manager Agent for WCF: Installation Guide

SOA Software Service Manager Agent for WCF: Installation Guide SOA Software Service Manager Agent for WCF: Installation Guide Agent for WCF Install Guide SOAWCF_Agent_Install_v62 Copyright Copyright 2014 SOA Software, Inc. All rights reserved. Trademarks SOA Software,

More information

Oracle Communications WebRTC Session Controller

Oracle Communications WebRTC Session Controller Oracle Communications WebRTC Session Controller Security Guide Release 7.0 E40975-01 November 2013 Oracle Communications WebRTC Session Controller Security Guide, Release 7.0 E40975-01 Copyright 2013,

More information

Sentinel EMS 4.1. Release Notes

Sentinel EMS 4.1. Release Notes Sentinel EMS 4.1 Release Notes Document Revision History Document Number: 007-013357-001 (Revision B), August 2016 Disclaimer and Copyrights All information herein is either public information or is the

More information

Oracle Financial Services Lending and Leasing

Oracle Financial Services Lending and Leasing Collections REST Web Services User Guide Oracle Financial Services Lending and Leasing Release 14.4.0.0.0 Part No. E89525-01 October 2017 Collections REST Web Services User Guide Oracle Financial Services

More information

Avaya Real-Time Speech Snap-in Reference

Avaya Real-Time Speech Snap-in Reference Avaya Real-Time Speech Snap-in Reference Release 3.0 Issue 2 September 2014 2014 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the information in this document

More information

What s New for Oracle Internet of Things Cloud Service. Topics: Oracle Cloud. What's New for Oracle Internet of Things Cloud Service Release 17.4.

What s New for Oracle Internet of Things Cloud Service. Topics: Oracle Cloud. What's New for Oracle Internet of Things Cloud Service Release 17.4. Oracle Cloud What's New for Oracle Internet of Things Cloud Service Release 17.4.5 E70360-16 December 2017 What s New for Oracle Internet of Things Cloud Service As soon as new and changed features become

More information

Aellius LynX Office Lookup Enhancements

Aellius LynX Office Lookup Enhancements Aellius LynX Office Lookup Enhancements August 2013 COPYRIGHT LynX Office Enhancements Copyright 2013, Aellius Professional Research & Consulting, LLC. All rights reserved. LynX Business Integrator (the

More information

Coveo Platform 7.0. Yammer Connector Guide

Coveo Platform 7.0. Yammer Connector Guide Coveo Platform 7.0 Yammer Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market conditions,

More information

Data Converter. For 8 Series Mobile Computers. Version 3.02

Data Converter. For 8 Series Mobile Computers. Version 3.02 Data Converter For 8 Series Mobile Computers Version 3.02 Copyright 2010~2014 CIPHERLAB CO., LTD. All rights reserved The software contains proprietary information of CIPHERLAB CO., LTD.; it is provided

More information

Google Search Appliance

Google Search Appliance Google Search Appliance Search Appliance Internationalization Google Search Appliance software version 7.2 and later Google, Inc. 1600 Amphitheatre Parkway Mountain View, CA 94043 www.google.com GSA-INTL_200.01

More information

epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS twitter.com/encorebusiness.com

epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS   twitter.com/encorebusiness.com epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS www.encorebusiness.com twitter.com/encorebusiness.com encore@encorebusiness.com Copyright Build Notes copyright 2018 Encore Business Solutions, Inc.

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Oracle Outside In Technology Release Notes 8.5.3 Release 8.5.3 E74928-01 April 2016 The major goals of this release are improved rendering fidelity in several key target formats,

More information

Text Record Type Definition. Technical Specification NFC Forum TM RTD-Text 1.0 NFCForum-TS-RTD_Text_

Text Record Type Definition. Technical Specification NFC Forum TM RTD-Text 1.0 NFCForum-TS-RTD_Text_ Text Record Type Definition Technical Specification NFC Forum TM RTD-Text 1.0 NFCForum-TS-RTD_Text_1.0 2006-07-24 RESTRICTIONS ON USE This specification is copyright 2005-2006 by the NFC Forum, and was

More information

API Reference (Contract Management)

API Reference (Contract Management) FUJITSU Cloud Service K5 IaaS API Reference (Contract Management) Version 1.5 FUJITSU LIMITED All Rights Reserved, Copyright Fujitsu Limited 2016 K5IA-DC-M-001-001E Preface Structure of the manuals Manual

More information

Veritas Backup Exec Quick Installation Guide

Veritas Backup Exec Quick Installation Guide Veritas Backup Exec Quick Installation Guide Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks of Veritas Technologies

More information

All Rights Reserved, Copyright FUJITSU LIMITED IoT Platform Service Portal Operating Manual (Version 5_0.0)

All Rights Reserved, Copyright FUJITSU LIMITED IoT Platform Service Portal Operating Manual (Version 5_0.0) 1 IoT Platform Service Portal Operating Manual (Version 5_0.0) Version No. Description Date Version 1.0 First version 2016/10/07 Version 1.1 Error corrections and supporting launch of

More information

Informatica MDM - Customer Release Guide

Informatica MDM - Customer Release Guide Informatica MDM - Customer 360 10.3 Release Guide Informatica MDM - Customer 360 Release Guide 10.3 September 2018 Copyright Informatica LLC 2017, 2018 This software and documentation are provided only

More information

CRM On Demand. Oracle CRM On Demand Desktop Administration Guide

CRM On Demand. Oracle CRM On Demand Desktop Administration Guide CRM On Demand Oracle CRM On Demand Desktop Administration Guide Version 4.0 March 2014 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

User Guide. Avigilon Camera Configuration Tool

User Guide. Avigilon Camera Configuration Tool User Guide Avigilon Camera Configuration Tool 2016, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo and AVIGILON CONTROL CENTER are trademarks of Avigilon Corporation. Other product

More information

Tzunami Deployer Confluence Exporter Guide

Tzunami Deployer Confluence Exporter Guide Tzunami Deployer Confluence Exporter Guide Supports extraction of Confluence Enterprise contents and migrate to Microsoft SharePoint using Tzunami Deployer. Version 2.7 Table of Content PREFACE... I INTENDED

More information

Senstar Symphony. 7.1 Command Line Installation Guide

Senstar Symphony. 7.1 Command Line Installation Guide Senstar Symphony 7.1 Command Line Installation Guide Contents Contents Overview... 3 Configuration file... 4 Configuration file example... 4 Configuration file parameters...4 Command line installation...

More information

Getting Started with MTConnect: Architecture

Getting Started with MTConnect: Architecture Institute Getting Started with : Architecture Draft 1 9/25/2012 Specifications or Materials AMT - The Association For Manufacturing Technology ( AMT ) owns the copyright in this Specification or Material.

More information

STMicroelectronics. STxP70-4 assembler. User manual Rev A. October

STMicroelectronics. STxP70-4 assembler. User manual Rev A. October STMicroelectronics STxP70-4 assembler User manual 8229631 Rev A October 2009 www.st.com BLANK User manual STxP70-4 assembler Introduction The STxP70-4 version of the assembler is based upon the GNU assembler

More information

One Identity Password Manager 5.7.1

One Identity Password Manager 5.7.1 One Identity Password Manager 5.7.1 Tuesday, October 31, 2017 These release notes provide information about the One Identity Password Manager release. About One Identity New features Resolved issues Known

More information

Security Guide Release 7.1

Security Guide Release 7.1 [1]Oracle Communications WebRTC Session Controller Security Guide Release 7.1 E55124-01 March 2015 Oracle Communications WebRTC Session Controller Security Guide, Release 7.1 E55124-01 Copyright 2013,

More information

WHITE PAPER PURITY CLOUDSNAP SETUP AND BEST PRACTICES GUIDE

WHITE PAPER PURITY CLOUDSNAP SETUP AND BEST PRACTICES GUIDE WHITE PAPER PURITY CLOUDSNAP SETUP AND BEST PRACTICES GUIDE TABLE OF CONTENTS INTRODUCTION... 3 CLOUDSNAP BENEFITS... 4 CORE COMPONENTS... 5 FlashArray, Purity, and Run... 5 Network... 5 AWS... 5 CLOUDSNAP

More information

Joomla User Guide Ver 3

Joomla User Guide Ver 3 LiveHelp Server Joomla User Guide Ver 3 Introduction The process of configuration and implementation of the LiveHelp server is divided into four stages, which are detailed below. The approximate time of

More information

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E Oracle Cloud Using the Google Calendar Adapter Release 16.3 E68599-05 September 2016 Oracle Cloud Using the Google Calendar Adapter, Release 16.3 E68599-05 Copyright 2015, 2016, Oracle and/or its affiliates.

More information

CMDP-LIMS INTERFACE CONTROL

CMDP-LIMS INTERFACE CONTROL CMDP LIMS ICD CMDP-LIMS INTERFACE CONTROL DOCUMENT Prepared for: WILL BOWMAN Product Owner U.S. EPA OFFICE OF WATER Prepared by: ATTAIN, LLC TABLE OF CONTENTS INTRODUCTION... 2 About This Document... 2

More information

One Identity Starling Two-Factor Authentication. Administrator Guide

One Identity Starling Two-Factor Authentication. Administrator Guide One Identity Authentication Administrator Guide Copyright 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Avaya Callback Assist Release Notes

Avaya Callback Assist Release Notes Avaya Callback Assist Release Notes Release 4.1.6 May 2014 2014 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this document was complete and

More information

EAM Portal User's Guide

EAM Portal User's Guide EAM Portal 9.0.2 User's Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

1. General Usage Guidelines... 2

1. General Usage Guidelines... 2 MHL Trademarks and Usage Guidelines Table of Contents 1. General Usage Guidelines... 2 2. MHL Logo Usage Guidelines... 3 2.1. The MHL Logo.... 3 2.2. Unallowed Alterations and Changes.... 3 2.3. Allowable

More information

Oracle Cloud Using Oracle IoT Connected Worker Cloud Service

Oracle Cloud Using Oracle IoT Connected Worker Cloud Service Oracle Cloud Using Oracle IoT Connected Worker Cloud Service 17.4.5 E84369-02 December 2017 Oracle Cloud Using Oracle IoT Connected Worker Cloud Service, 17.4.5 E84369-02 Copyright 2017, Oracle and/or

More information

SOA Software Visual Studio Add-in: Installation Guide

SOA Software Visual Studio Add-in: Installation Guide SOA Software Visual Studio Add-in: Installation Guide Visual Studio Add-In Install Guide SOA_VS_Install_v62 Copyright Copyright 2014 SOA Software, Inc. All rights reserved. Trademarks SOA Software, Policy

More information

Module Code Entries Utility Oracle FLEXCUBE Universal Banking Release [December] [2016]

Module Code Entries Utility Oracle FLEXCUBE Universal Banking Release [December] [2016] Module Code Entries Utility Oracle FLEXCUBE Universal Banking Release 12.3.0.0.0 [December] [2016] Table of Contents 1. DSN ENTRIES UTILITY... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP MODULE CODE ENTRIES...

More information

Oracle Cloud. Using the Oracle Mapper Release 16.4 E

Oracle Cloud. Using the Oracle Mapper Release 16.4 E Oracle Cloud Using the Oracle Mapper Release 16.4 E64409-09 December 2016 This guide describes how to use the mapper to map source data structures to target data structures. Oracle Cloud Using the Oracle

More information

CIOC API User Guide. Release Online Resources 3.7 / Client Tracker 3.2. Katherine Lambacher, KCL Software Solutions Inc.

CIOC API User Guide. Release Online Resources 3.7 / Client Tracker 3.2. Katherine Lambacher, KCL Software Solutions Inc. CIOC API User Guide Release Online Resources 3.7 / Client Tracker 3.2 Katherine Lambacher, KCL Software Solutions Inc. September 03, 2015 Contents 1 CIOC Online Resources API Introduction 1 1.1 Available

More information

SOA Software Intermediary for Microsoft : Install Guide

SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft Install Guide SOAIM_60 August 2013 Copyright Copyright 2013 SOA Software, Inc. All rights reserved. Trademarks

More information

997 Functional Acknowledgment

997 Functional Acknowledgment INDUSTRY CONVENTIONS AND IMPLEMENTATION GUIDELINES FOR EDI FUNCTIONAL ACKNOWLEDGMENT 997 997 Functional Acknowledgment Introduction Functional Acknowledgements (FA) are required for each functional group

More information

IPv6 Classification. PacketShaper 11.8

IPv6 Classification. PacketShaper 11.8 PacketShaper 11.8 Legal Notice Copyright 2017 Symantec Corp. All rights reserved. Symantec, the Symantec Logo, the Checkmark Logo, Blue Coat, and the Blue Coat logo are trademarks or registered trademarks

More information

SCCM Plug-in User Guide. Version 3.42

SCCM Plug-in User Guide. Version 3.42 SCCM Plug-in User Guide Version 3.42 JAMF Software, LLC 2016 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software 100 Washington

More information

Command Line Guide. Updated June 20, 2018 for use with VRMark Professional Edition v

Command Line Guide. Updated June 20, 2018 for use with VRMark Professional Edition v Command Line Guide Updated June 20, 2018 for use with VRMark Professional Edition v1.3.2020 Installation When installing the application using a command line the following options are available. vrmark-setup.exe

More information

Veritas Desktop and Laptop Option Mobile Application Getting Started Guide

Veritas Desktop and Laptop Option Mobile Application Getting Started Guide Veritas Desktop and Laptop Option Mobile Application Getting Started Disclaimer Contents The software described in this document is furnished under a license agreement and may be used only in accordance

More information

One Identity Manager 8.0. Data Archiving Administration Guide

One Identity Manager 8.0. Data Archiving Administration Guide One Identity Manager 8.0 Data Archiving Administration Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration Oracle Cloud Using the Google Calendar Adapter with Oracle Integration E85501-05 January 2019 Oracle Cloud Using the Google Calendar Adapter with Oracle Integration, E85501-05 Copyright 2017, 2019, Oracle

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Origination Social Media Integration User Manual Release 17.2.0.0.0 Part No. E88573-01 July 2017 Origination Social Media Integration User Manual July 2017 Oracle Financial

More information

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS INTRODUCTION: Before the California State Teachers Retirement System (hereinafter "CalSTRS," "We," or "Us") will provide services found at mycalstrs.com (the

More information

WorkingWith the EDM for Sun Master Patient Index

WorkingWith the EDM for Sun Master Patient Index WorkingWith the EDM for Sun Master Patient Index Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 820 3410 15 September 2008 Copyright 2008 Sun Microsystems, Inc. 4150 Network

More information

Creating Custom Patches through Packing List Utility

Creating Custom Patches through Packing List Utility Creating Custom Patches through Packing List Utility The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market

More information

Monitoring Pure Storage. Pure Storage PowerPack version 100

Monitoring Pure Storage. Pure Storage PowerPack version 100 Monitoring Pure Storage Pure Storage PowerPack version 100 Table of Contents Introduction 3 What is Pure Storage? 3 What Does the Pure Storage PowerPack Monitor? 4 Installing the Pure Storage PowerPack

More information

Samsung Memory Card/UFD Authentication Utility

Samsung Memory Card/UFD Authentication Utility Samsung Memory Card/UFD Authentication Utility User s Manual. Revision 1.0 LEGAL DISCLAIMER SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products

More information

Symptom Checker API v1.2 Documentation

Symptom Checker API v1.2 Documentation Symptom Checker API v1.2 Documentation 07/06/16 Self Care Decisions Symptom Checker API 2 Symptom Checker API v1.2 Overview... 3 Supplemental Resources... 4 Sample Web Application and User Story... 4 Interaction

More information

Device Quotas. Administrator's Guide

Device Quotas. Administrator's Guide Device Quotas Administrator's Guide March 2015 www.lexmark.com Contents 2 Contents Overview... 4 Default configuration...4 Before you begin... 4 Configuring the application from the control panel...6 Accessing

More information

Discovery data feed for Eid 2.0

Discovery data feed for Eid 2.0 Discovery data feed for Eid 2.0 Proposal for a generic discovery solution for Eid 2.0 Stefan Santesson, 3xA Security AB 2011-09- 10 Summary E- legitimationsnämnden in Sweden are preparing for a new infrastructure

More information

Intro to XML. Borrowed, with author s permission, from:

Intro to XML. Borrowed, with author s permission, from: Intro to XML Borrowed, with author s permission, from: http://business.unr.edu/faculty/ekedahl/is389/topic3a ndroidintroduction/is389androidbasics.aspx Part 1: XML Basics Why XML Here? You need to understand

More information

OpenSRS Publishing Service API Command Reference

OpenSRS Publishing Service API Command Reference OpenSRS Publishing Service API Command Reference October 22, 2013 Table of Contents Introduction...4 Purchasing gomobi Services...4 Integrating with OpenSRS...4 Publishing Service API error response codes...5

More information

IBM XIV Provider for Microsoft Windows Volume Shadow Copy Service. Version 2.3.x. Installation Guide. Publication: GC (August 2011)

IBM XIV Provider for Microsoft Windows Volume Shadow Copy Service. Version 2.3.x. Installation Guide. Publication: GC (August 2011) IBM XIV Provider for Microsoft Windows Volume Shadow Copy Service Version 2.3.x Installation Guide Publication: GC27-3920-00 (August 2011) Note: Before using this document and the products it supports,

More information

Kofax Ascent Capture. Script Reference

Kofax Ascent Capture. Script Reference Kofax Ascent Capture Script Reference September 2004 www.lexmark.com Edition: September 2004 The following paragraph does not apply to any country where such provisions are inconsistent with local law:

More information

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017 Oracle Hospitality OPERA Exchange Interface Cloud Authentication October 2017 Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

The Privileged Appliance and Modules (TPAM) 1.0. Diagnostics and Troubleshooting Guide

The Privileged Appliance and Modules (TPAM) 1.0. Diagnostics and Troubleshooting Guide The Privileged Appliance and Modules (TPAM) 1.0 Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Oracle Cloud Using the Google Calendar Adapter. Release 17.3

Oracle Cloud Using the Google Calendar Adapter. Release 17.3 Oracle Cloud Using the Google Calendar Adapter Release 17.3 E68599-09 October 2017 Oracle Cloud Using the Google Calendar Adapter, Release 17.3 E68599-09 Copyright 2015, 2017, Oracle and/or its affiliates.

More information

Reports DSN Entries Utility Oracle FLEXCUBE Universal Banking Release [May] [2018]

Reports DSN Entries Utility Oracle FLEXCUBE Universal Banking Release [May] [2018] Reports DSN Entries Utility Oracle FLEXCUBE Universal Banking Release 14.1.0.0.0 [May] [2018] Table of Contents 1. REPORTS DSN ENTRIES UTILITY... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP REPORTS DSN

More information