Batch Geocoder API. Developer's Guide. Version

Size: px
Start display at page:

Download "Batch Geocoder API. Developer's Guide. Version"

Transcription

1 Batch Geocoder API Developer's Guide Version

2 Batch Geocoder API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Batch Geocoder API?...6 Why use the Batch Geocoder API?...6 Chapter 2: Quick Start... 7 Batch Geocoder Example...8 Chapter 3: User Guide...10 Acquiring Credentials...11 Constructing a Request Customer Integration Testing...11 Input Data Output Data...14 Cancelling a Job...19 Removing a Job Tools Service Support Chapter 4: API Reference...21 API Endpoints Request Parameters Error Messages... 24

3 Batch Geocoder API Developer's Guide 3 Legal Notices Legal Notices 2013 HERE. All rights reserved. This material, including documentation and any related computer programs, is protected by copyright controlled by HERE. All rights are reserved. Copying, including reproducing, storing, adapting or translating, any or all of this material requires the prior written consent of HERE. This material also contains confidential information, which may not be disclosed to others without the prior written consent of HERE. Trademark Acknowledgements HERE and Nokia are trademarks or registered trademarks of Nokia Corporation in the United States and other countries. Other trade names are trademarks or registered trademarks of their owners. Disclaimer This content is provided "as-is" and without warranties of any kind, either express or implied, including, but not limited to, the implied warranties of merchantability, fitness for a particular purpose, satisfactory quality and non-infringement. Nokia does not warrant that the content is error free and Nokia does not warrant or make any representations regarding the quality, correctness, accuracy, or reliability of the content. You should therefore verify any information contained in the content before acting on it. To the furthest extent permitted by law, under no circumstances, including without limitation Nokia's negligence, shall Nokia be liable for any damages, including, without limitation, direct, special, indirect, punitive, consequential, exemplary and/ or incidental damages that result from the use or application of this content, even if Nokia or an authorized representative has been advised of the possibility of such damages.

4 Batch Geocoder API Developer's Guide 4 Document Information Document Information Product Name: Batch Geocoder API Version: Version Document Name: Id: Status: Date: Batch Geocoder API Developer's Guide dd34cfd FINAL 2013-Dec-03, 15:11 (GMT)

5 Batch Geocoder API Developer's Guide 5 Overview Chapter 1 Overview Topics: What is the Batch Geocoder API? Why use the Batch Geocoder API? This section introduces the Batch Geocoder API and describes its common use cases.

6 Batch Geocoder API Developer's Guide 6 Overview What is the Batch Geocoder API? Batch Geocoder API is a web service that allows users to geocode large sets of addresses (hundreds of thousands). Users upload a single input file, the service processes the data asynchronously and returns a single file with the geocoded addresses. Why use the Batch Geocoder API? Use the Batch Geocoder API to geocode large sets of addresses in one batch. Upload your addresses that you have in a text file and download the complete results in one file when the job is done. The Batch Geocoder API saves you from sending individual service requests to the service address by address. And since the result is also in text form (delimited file format) your client application does not need to parse XML or JSON. Jobs are processed asynchronously. Clients can either wait for an notification or poll the status of the job and download the result when the job is completed. The input can be qualified addresses (structured input) or free-form search strings, both containing complete or partial address information. The result per input address is either a single record exactly matching the input or a sequence of records ranked by relevance when the input is ambiguous. In this respect the Batch Geocoder API works just in the same way as the transactional Geocoder API. The service is for forward geocoding only. Reverse geocoding and landmark geocoding is not available for batch at this time.

7 Batch Geocoder API Developer's Guide 7 Quick Start Chapter 2 Quick Start Topics: Batch Geocoder Example This article describes the simplest scenario using the Batch Geocoder API and illustrates it with a working example. Note that the example uses demo credentials. These are suitable for testing, but must be replaced with application-specific credentials in your own applications. Please see also Acquiring Credentials on page 11.

8 Batch Geocoder API Developer's Guide 8 Quick Start Batch Geocoder Example Performing batch geocoding on a list of address data means to run a series of commands: 1. Upload the address data to the Batch Geocoder and start the processing job 2. Download the results when processing is done After you have submitted the job and downloaded the results, you can optionally delete the job. app_id and app_code are authentication credentials. You can use the demo credentials in the examples for testing, but must substitute them with your own unique values in your website or application. See Acquiring Credentials on page 11 for more information. Note: When using a commandline utility such as curl or wget, remember to set the header before specifying the body of the request. 1. Start a new batch geocoding job and upload the data to be geocoded by submitting an HTTP POST request with action=run and attaching the input addresses to the body. Set the HTTP header Content-Type to text/plain. &mailto=<my_ > &header=true &indelim= &outdelim= &outcols=displaylatitude,displaylongitude,housenumber,street, city,postalcode,country &outputcombined=false &app_code=ajknxv84fjrb0kihaws0tg &app_id=demoappid gal Example input: recid searchtext country 0001 Invalidenstraße Berlin DEU 0002 Am Kronberger Hang Schwalbach DEU W Randolph St Chicago IL USA 0004 One Main Street Cambridge MA USA S Mathilda Ave Sunnyvale CA USA 2. The result of the jobs request contains a RequestID. Use this RequestID to identify this job in future actions you want to perform on it. Example response: <?xml version="1.0" encoding="utf-8" standalone="yes"?>

9 Batch Geocoder API Developer's Guide 9 Quick Start <ns2:searchbatch xmlns:ns2=" Search-Batch/1"> <Response> <MetaInfo> <RequestID> </RequestID> </MetaInfo> <Status>accepted</Status> <TotalCount>0</TotalCount> <ValidCount>0</ValidCount> <InvalidCount>0</InvalidCount> <ProcessedCount>0</ProcessedCount> <PendingCount>0</PendingCount> <SuccessCount>0</SuccessCount> <ErrorCount>0</ErrorCount> </Response> </ns2:searchbatch> 3. Optionally, check the job status with a GET request &app_code=ajknxv84fjrb0kihaws0tg &app_id=demoappid gal 4. Download a zip file containing the results from the following link: &app_id=demoappid gal The zip file contains the results and reports. the geocoded addresses (result_yyyymmdd-hh-mm out.txt) addresses that could not be matched (optional file) (result_yyyymmdd-hh-mm err.txt) invalid input that could not be processed (result_yyyymmdd-hh-mm inv.txt) a report file (result_yyyymmdd-hh-mm rpt.txt) where YYYYMMDD-HH-MM is the date and time when the job was processed. Note: You can also access the results files individually at jobs/<requestid>/result jobs/<requestid>/errors jobs/<requestid>/no-matches

10 Batch Geocoder API Developer's Guide 10 User Guide Chapter 3 User Guide Topics: Acquiring Credentials Constructing a Request Customer Integration Testing Input Data Output Data Cancelling a Job Removing a Job Tools Service Support The articles in this part of the guide explain essential concepts and show how to use the Batch Geocoder API. The text is accompanied by examples that show the API in operation. Note that where credentials are required, the examples use demo ones. These are acceptable for testing purposes, but must be replaced by application-specific credentials in real-life applications (please see also Acquiring Credentials on page 11).

11 Batch Geocoder API Developer's Guide 11 User Guide Acquiring Credentials All users of HERE APIs must obtain authentication and authorization credentials and provide them as values for the parameters app_id and app_code. The credentials are assigned per application. To obtain the credentials for an application, please visit for more details. Constructing a Request A request to the Batch Geocoder API includes the basic elements shown in the following table and, in addition, it may contain resource-specific parameters. Table 1: Basic request elements Element Value/Example Description Base URL Production environment only CIT environment: see Customer Integration Testing on page 11 Path /6.2/ Resource /jobs An endpoint from API Endpoints on page 22 Application Code &app_code=ajknxv84fjrb0kihaws0tg Substitute your own unique app_code Application Id &app_id=demoappid gal Substitute your own unique app_id Customer Integration Testing HERE is committed to maintain the best possible production service for all customers. Given that the production environment is live and common to all API users, we request that you use the alternative Customer Integration Testing (CIT) environment when evaluating our products, running tests, making changes in your code and altering the way you access our APIs. The CIT environment also allows you to test your software against a newer version of the service before HERE brings that version into production. CIT offers a fully functional environment for

12 Batch Geocoder API Developer's Guide 12 User Guide customers to use for development and testing, but it does not support high loads or performance testing in general. Note that the same application id can be used in both environments, but CIT may require a dedicated application code. If this is the case, please contact us as described under Service Support on page 20. The CIT environment is not intended for general production use. Input Data Input data consists of the addresses to be geocoded. Your input must abide by the following limitations: The number of lines to geocode is limited to 1,000,000 (excluding the header) The maximum request size is limited to 2GB uncompressed If the request exceeds these limitations, the request returns an error and the addresses are not processed. You must provide the input data in a delimited file format. The field delimiter can be any of the following characters: (pipe) ; (semicolon) : (colon), (comma) \t (tab) Just as with Geocoder API, the address data can be structured (qualified) or unstructured (freeform). The following is an example of an input file with the address as freeform with a country code qualifier using " " as a delimiter. recid searchtext country W Randolph St, Chicago Illinois USA 2 31 St James Ave Boston MA USA Berlin Invalidenstrasse 117 DEU The following is an example of the same addresses in fully qualified form: recid street city postalcode country Randolph St Chicago USA 2 31 St James Ave Boston USA 3 Invalidenstrasse 117 Berlin DEU

13 Batch Geocoder API Developer's Guide 13 User Guide The column recid is optional. If provided, it is repeated in the output for reference. If you have an occurrence of the delimiter character in the data, you must enclose the data in double quotes. Below an example where the delimiter is a comma and the input contains commas. recid,searchtext,country 1,"Sturmstraße 8, München", DEU 2,"Milano", ITA 3,"Rom", ITA 4,"Tecklenburger Straße, Westerkappeln 49492", DEU 5,"425 W Randolph St Chicago, Illinois, 60606", USA Basic Input Fields Input field names are not case sensitive. When no record ID is supplied (field name recid), then the BGC will generate one as a sequence from 1 to numlines. Record IDs may be of any form and may contain numbers and/or strings. They even may consist of several words. The result will be alphabetically sorted by recid. Table 2: General recid Identifies your input address in the response Table 3: Address, freeform searchtext single line query string, may be enclosed in double quotes Table 4: Address, qualified street housenumber district city postalcode county state country

14 Batch Geocoder API Developer's Guide 14 User Guide Table 5: Miscellaneous locationattributes addressattributes responseattributes mapview countryfocus bbox prox locationid additionaldata gen query parameter needed for requesting special output fields, e.g. mapreferenceid and mapreferencemapversion are activated using the value mr for locationattributes query parameter to request special address attributes query parameter to request special response attributes map view to be used for geocoding country focus to be used for geocoding bounding box filter to be used for geocoding proximity filter to be used for geocoding location id of the requested object additional query paramters to be used for geocoding generation parameter to be used for geocoding For the detailed description of these parameters, please consult the Geocoder API Developer's Guide. Output Data The output data follows the format that was specified when starting the job. The first three columns are fixed and are always: recid seqnumber seqlength recid is the same id you provided in the input. seqnumber and seqlength are used to number ambiguous results for an input address. For the input "425 Randolph St" two results exist: E and W Randolph St. The seqlength is the number of records returned, which is 2 in this case, and both

15 Batch Geocoder API Developer's Guide 15 User Guide results are sorted by seqnumber. There is no guarantee that the result is sorted by recid and seqnumber. In the example below the complete output for the example input data in Input Data on page 12 can be found: recid seqnumber seqlength displaylatitude displaylongitude housenumber street city postalcode country W Randolph St Chicago USA E Randolph St Chicago USA Saint James Ave Boston USA Invalidenstraße Berlin DEU Basic Output Fields Table 6: General recid seqnumber seqlength Identifies your input address in the response Numbers consecutively the different results for the corresponding input record starting with 1 Number of results for the corresponding input record Table 7: Geographical Location displaylatitude displaylongitude navigationlatitude (same as latitude) navigationlongitude (same as longitude) mapviewbottomrightlatitude mapviewbottomrightlongitude mapviewtopleftlatitude (same as latitude) mapviewtopleftlongitude (same as longitude) Latitude of display position Longitude of display position Latitude of navigation position Longitude of navigation position Latitude of mapview's bottom right corner Longitude of mapview's bottom right corner Latitude of mapview's top left corner Longitude of mapview's top left corner

16 Batch Geocoder API Developer's Guide 16 User Guide Table 8: Address Details street housenumber building district city postalcode county state country Refers to the street name. House number. Depending on regional characteristics, can also be house name. For API implementations which do not support separate street and house number fields, this field can be omitted. Building Name Includes the subdivision level below the city. Use of this field is optional if a second subdivision level is not available. Refers to the locality of the address. Postal code Includes the second subdivision level(s) below the country. Use of this field is optional if a second subdivision level is not available. Includes the first subdivision level(s) below the country. Where commonly used, this is a state code (i.e., CA for Califonia). ISO 3166-alpha-3 country code addresslines Table 9: Formatted Localized Address locationlabel Assembled address value for displaying purposes. Table 10: Address Match Information relevance matchtype Indicates the relevance of the results found; the higher the score the more relevant the alternative. The score is a normalized value between 0 and 1. Quality of the location match.

17 Batch Geocoder API Developer's Guide 17 User Guide pointaddress: Location matches exactly as point address. interpolated: Location was interpolated. matchcode matchlevel matchqualitystreet matchqualityhousenumber matchqualitybuilding matchqualitydistrict Code indicating how well the result matches the request. Enumeration [exact, ambiguous, uphierarchy, ambiguousuphierarchy]. The most detailed address field that matched the input record MatchQuality provides detailed information about the match quality of a result at attribute level. Match quality is a value between 0.0 and represents a 100% match. matchqualitycity matchqualitypostalcode matchqualitycounty matchqualitystate matchqualitycountry Table 11: Misc locationtype locationid mapreferenceid mapreferencemapversion mapreferencesideofstreet Indicates whether the location is an [area, point, line]. A key uniquely identifying a physical location. Note: Requires to add locationattributes column with value mr to the input mapreferencespot mapreferencecountryid mapreferencestateid mapreferencecountyid

18 Batch Geocoder API Developer's Guide 18 User Guide mapreferencecityid mapreferencedistrictid addressadditionaldata Example: CountryName=Vereinigte Staaten; StateName=Illinois responseadditionaldata Additional Information about the result, e.g. wrt. housenumber fallbacks: housenumberfallbackdifference=1; housenumberfallback=true Table 12: Parsed Request Information parsedrequestname parsedrequestlabel parsedrequestcountry parsedrequeststate parsedrequeststreet parsedrequestcounty parsedrequestcity parsedrequestdistrict parsedrequesthousenumber parsedrequestpostalcode parsedrequestbuilding parsedrequestaddresslines parsedrequestadditionaldata parsedrequestposition

19 Batch Geocoder API Developer's Guide 19 User Guide Cancelling a Job To cancel a job use the cancel action with an HTTP PUT. This requires the <RequestID>. &app_code=ajknxv84fjrb0kihaws0tg &app_id=demoappid gal Removing a Job After you have downloaded the results you can delete the job using HTTP DELETE. This requires the <RequestID>. This removes the input, the results and also the status from the server. &app_id=demoappid gal Note: Jobs are automatically removed from the server 30 days after they are processed. Tools When submitting a job using wget and curl, check field names (e.g., &outcols=recid, ) and field delimiter in the request for both the input and the output. wget and curl will return a 400 Bad Request response in case there is a mistype or when the delimiter does not match the delimiter in the input file. Both wget and curl need a content type to be specified in the header. Uploading compressed address data is currently not supported. wget For wget use the header Content-Type: text/plain Example: wget --header="content-type: text/plain; charset=utf-8" --postfile=addresses.txt

20 Batch Geocoder API Developer's Guide 20 User Guide " &app_code=ajknxv84fjrb0kihaws0tg &app_id=demoappid gal &action=run &header=true &indelim=; &outdelim=, &outcols=recid,latitude,longitude,locationlabel &mailto=<my_ > &outputcombined=true &language=de-de" curl If you use curl, be sure to add the following header Content-Type: text/plain and submit the payload using the --data-binary parameter. Example: curl -X POST -H "Content-Type: text/plain" " &app_code=ajknxv84fjrb0kihaws0tg &app_id=demoappid gal &action=run &header=true &indelim=; &outdelim=, &outcols=recid,latitude,longitude,locationlabel &mailto=<my_ > &outputcombined=true &language=de-de" Service Support If you need assistance with this or other HERE products, please contact your HERE representative or Technical Customer Support via at

21 Batch Geocoder API Developer's Guide 21 API Reference Chapter 4 API Reference Topics: API Endpoints Request Parameters Error Messages This part of the guide provides a comprehensive reference to Batch Geocoder API.

22 Batch Geocoder API Developer's Guide 22 API Reference API Endpoints Table 13: Batch Geocoder Request Endpoints URL Request Description HTTP Method jobs <The HTTP Body of the request contains the data to be geocoded.> Creates a batch job Returns a RequestID POST jobs/<requestid>?action=run&params=... Starts the batch job with the given parameters. PUT jobs?action=run&params=... <The HTTP Body of the request contains the data to be geocoded.> Creates a batch job Starts the job Returns a RequestID (shortcut for jobs and jobs/...? action=run) POST jobs/<requestid>?action=cancel Cancels the batch job. PUT jobs/<requestid>?action=status Returns the status for the batch job. GET jobs/<requestid> jobs/<requestid>/result jobs/<requestid>/errors jobs/<requestid>/no-matches jobs/<requestid>/all Deletes the batch job. Note that the difference between this request and others is the HTTP type, which is DELETE. You do not use an action to delete a job. Starts a download of all files. The result file contains all geocoded results. If "OutputCombined" is specified, this will also contain "no-matches". Errors are not included. Starts a download of the error file. The errors file contains all invalid lines from the input data. Download all results that the geocoder could not match to an address ("no-match") Downloads the no-matches file only. Downloads all available files in one zip file Downloads all the files: result, errors (optional) invalid report DELETE GET GET GET GET

23 Batch Geocoder API Developer's Guide 23 API Reference Request Parameters Table 14: Request Parameters for Job Submission Parameter Type Description indelim Char, Required Field delimeter in the input data. mailto String, Required address where completion notification is sent. outdelim Char, Required Field delimeter in the output data. outcols Enumeration, Required List of columns to return in the output. outputcombined Boolean, Required If true, sucessful and unsucessful addresses are combined into a single result_yyyymmdd-hh-mm out.txt file, if false they are returned in two separate files result_yyyymmdd-hh-mm out.txt result_yyyymmdd-hh-mm err.txt action String Type of request, one of run run a previously uploaded job status inquire about job <RequestID> cancel cancel job <RequestID> header Boolean If true, a header row is included before the results in the output. maxresults Integer Limits the number of items in the response. Default value is 10. The following parameters can be used to define default parameters for each Geocoding request in the input. Table 15: Request Parameters for Geocoding Parameter Type Description locationattributes Enumeration query parameter to request special location attributes addressattributes Enumeration query parameter to request special address attributes responseattributes Enumeration query parameter to request special response attributes mapview GeoBoundingBoxType map view to be used for geocoding countryfocus String country focus to be used for geocoding bbox GeoBoundingBoxType bounding box filter to be used for geocoding prox GeoProximityType proximity filter to be used for geocoding

24 Batch Geocoder API Developer's Guide 24 API Reference Parameter Type Description locationid String location id of the requested object gen Integer generation parameter to be used for geocoding additionaldata Enumeration List of KeyValuePairType elements as a generic container for attaching additional information to the request. language Enumeration The preferred languages, in descending order, in which internationalized text attributes should be returned. RFC 4647 standard. Note: These parameters will be taken as default parameters for the geocoding query. Defatult values can be overridden by non-empty input cells in the input line. E.g. a request sent with language=en-us will add the language parameter with values en-us to each Geocoder request, unless the input data contains a columnn language with a non-empty string value. In this case the parameter's value is taken from the input line. Note: For the detailed description of these parameters' usage, please consult the Geocoder API Developer's Guide. Table 16: Request Parameters for Result Retrieval Parameter Type Description outputcompressed Boolean If true (the default) the result files available at jobs/<requestid>/result jobs/<requestid>/errors jobs/<requestid>/no-matches are compressed in a zip file. If false the above endpoints will return uncompressed text files (HTTP Content-Type text/plain) Error Messages Errors in this table are ordered alphabetically by error text. Table 17: Error messages Error text address is missing Expected Format Input delimiter is missing Description Supply an address for notification. Data must be in the correct format. Supply input delimiter of the input address file.

25 Batch Geocoder API Developer's Guide 25 API Reference Error text Invalid input data Invalid output column Output columns are missing Output combined in missing Output delimiter is missing Permanently Prohibited Request Id is missing Request Id: { } Input file is missing Request Id:{ } is invalid There was an error in processing your file There was an error locating your file Unable to determine search type based upon input columns Unable to read input file to determine input columns Description Request parameters are incorrectly formatted. The column requested is invalid. Supply valid output columns. User needs to supply a value for OutputCombined parameter. Supply output delimiter of the result files. User needs to supply correct authentication key in token parameter. No request id was submitted in the request. The input address file is missing. Possible reasons: The file was not uploaded or was removed for archive purposes. The request id could not be found. Possible reasons: An input file was not uploaded or directory was removed for archive purposes. The requested file was unavailable. Possible error in processing or removed for archive purposes. The requested file was unavailable. Possible error in processing or removed for archive purposes. Based upon the input columns submitted, the type of service could not be determined. No column names were included in the header of the input address file.

Batch Geocoder API. Developer's Guide. Version

Batch Geocoder API. Developer's Guide. Version Batch Geocoder API Developer's Guide Version 6.2.33.4 Batch Geocoder API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Batch Geocoder

More information

Custom Location Extension

Custom Location Extension Custom Location Extension User Guide Version 1.4.9 Custom Location Extension User Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Custom Location

More information

Custom Location Service API

Custom Location Service API Custom Location Service API Developer's Guide Version 1.0.0 Custom Location Service API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is

More information

Geocoder API. Developer's Guide. Version

Geocoder API. Developer's Guide. Version Geocoder API Developer's Guide Version 6.2.52 Geocoder API Developer's Guide 2 Contents Contents Legal Notices...4 Document Information... 5 Chapter 1: Overview... 6 What is the Geocoder API?...7 Why use

More information

Maps API for JavaScript

Maps API for JavaScript Maps API for JavaScript Release Notes Public Version 2.5.3 Maps API for JavaScript Release Notes 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 Known issues...

More information

Geofencing Extension API

Geofencing Extension API Geofencing Extension API Developer's Guide Version 1.0 Geofencing Extension API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Geofencing

More information

Maps API for JavaScript

Maps API for JavaScript Maps API for JavaScript Release Notes Version 3.0.7.0 Maps API for JavaScript Release Notes 2 Contents Contents Legal Notices...3 Document Information... 4 Overview...5 Known issues... 6 Added functionality...

More information

Geocoder API. Developer's Guide. Version

Geocoder API. Developer's Guide. Version Geocoder API Developer's Guide Version 6.2.63 Geocoder API Developer's Guide 2 Contents Contents Legal Notices...4 Document Information... 5 Chapter 1: Overview... 6 What is the Geocoder API?...7 Why use

More information

Custom Location Extension API

Custom Location Extension API Custom Location Extension API Developer's Guide Version 1.6.5.2 Custom Location Extension API Developer's Guide 2 Contents Contents Legal Notices...4 Document Information... 5 Chapter 1: Overview... 6

More information

Geofencing Extension API

Geofencing Extension API Geofencing Extension API Developer's Guide Version 1.1 Geofencing Extension API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Geofencing

More information

Forward Geocoder on AWS Marketplace

Forward Geocoder on AWS Marketplace Forward Geocoder on AWS Marketplace Developer's Guide AWS Version 6.2.120 Important Information Notices Topics: This section contains document notices. Legal Notices Document Information Forward Geocoder

More information

Informatica Cloud Spring Microsoft Azure Blob Storage V2 Connector Guide

Informatica Cloud Spring Microsoft Azure Blob Storage V2 Connector Guide Informatica Cloud Spring 2017 Microsoft Azure Blob Storage V2 Connector Guide Informatica Cloud Microsoft Azure Blob Storage V2 Connector Guide Spring 2017 October 2017 Copyright Informatica LLC 2017 This

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

Vantrix Corporation VTA QuickStart

Vantrix Corporation VTA QuickStart Vantrix Corporation VTA QuickStart Version: Date: 56 This material and information ( Information ) constitutes a trade secret of Vantrix Corporation ( Vantrix ) and is strictly confidential. You agree

More information

Address Management User Guide. PowerSchool 8.x Student Information System

Address Management User Guide. PowerSchool 8.x Student Information System PowerSchool 8.x Student Information System Released July 2014 Document Owner: Documentation Services This edition applies to Release 8.0.1 of the PowerSchool software and to all subsequent releases and

More information

Symantec Ghost Solution Suite Web Console - Getting Started Guide

Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console- Getting Started Guide Documentation version: 3.3 RU1 Legal Notice Copyright 2019 Symantec Corporation.

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Geocoder API. Release Notes. Version

Geocoder API. Release Notes. Version Geocoder API Release Notes Version 6.2.47 Geocoder API Release Notes 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 D38 Highlights...6 Chapter 2: Release Major

More information

Enterprise Vault Configuring Internal and External WebApp URLs for OWA SP4 and later

Enterprise Vault Configuring Internal and External WebApp URLs for OWA SP4 and later Enterprise Vault Configuring Internal and External WebApp URLs for OWA 2007 SP4 and later Enterprise Vault : Configuring Internal and External WebApp URLs for OWA Last updated: 2018-04-12. Legal Notice

More information

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010/2013 Users 11.0 Light Outlook Add-In Symantec Enterprise Vault: Guide for Microsoft Outlook 2010/2013 Users The software described in this book

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6.1 SERVICE PACK 1 PART NO. E17383-01 MARCH 2010 COPYRIGHT Copyright 1998, 2010, Oracle and/or its affiliates. All rights

More information

Enterprise Vault Troubleshooting FSA Reporting. 12 and later

Enterprise Vault Troubleshooting FSA Reporting. 12 and later Enterprise Vault Troubleshooting FSA Reporting 12 and later Enterprise Vault : Troubleshooting FSA Reporting Last updated: 2018-04-17. Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved.

More information

Carbonite Server Backup Portal 8.5. Administration Guide

Carbonite Server Backup Portal 8.5. Administration Guide Carbonite Server Backup Portal 8.5 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

Geocoder API. Release Notes. Version

Geocoder API. Release Notes. Version Geocoder API Release Notes Version 6.2.67 Geocoder API Release Notes 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 D51 Highlights...6 Chapter 2: Release Major

More information

Address Management User Guide. PowerSchool 6.0 Student Information System

Address Management User Guide. PowerSchool 6.0 Student Information System User Guide PowerSchool 6.0 Student Information System Released June 2009 Document Owner: Document Services This edition applies to Release 6.0 of the PowerSchool Premier software and to all subsequent

More information

Cisco Terminal Services (TS) Agent Guide, Version 1.1

Cisco Terminal Services (TS) Agent Guide, Version 1.1 First Published: 2017-05-03 Last Modified: 2017-12-19 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

Basware Portal for Receiving Basware Commerce Network

Basware Portal for Receiving Basware Commerce Network Basware Portal for Receiving Basware Commerce Network Copyright 1999-2016 Basware Corporation. All rights reserved. Disclaimer This product or document is copyrighted according to the applicable copyright

More information

Integration Adaptor. Release

Integration Adaptor. Release Integration Adaptor Release 14.2.00 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is for your informational

More information

Informatica Cloud Spring REST API Connector Guide

Informatica Cloud Spring REST API Connector Guide Informatica Cloud Spring 2017 REST API Connector Guide Informatica Cloud REST API Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 2016, 2018 This software and documentation are provided

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

PUBLIC DQM Microservices Blueprints User's Guide

PUBLIC DQM Microservices Blueprints User's Guide SAP Data Services Document Version: 4.2 Support Package 8 (14.2.8.0) 2017-02-27 PUBLIC Content 1 Introduction.... 3 1.1 Documentation set for SAP Data Services content objects.... 3 1.2 SAP information

More information

Carbonite Server Backup Portal 8.6. Administration Guide

Carbonite Server Backup Portal 8.6. Administration Guide Carbonite Server Backup Portal 8.6 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

One Identity Starling Two-Factor Desktop Login 1.0. Administration Guide

One Identity Starling Two-Factor Desktop Login 1.0. Administration Guide One Identity Starling Two-Factor Desktop Login 1.0 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010 Users 9.0 Symantec Enterprise Vault: Guide for Microsoft Outlook 2010 Users The software described in this book is furnished under a license agreement

More information

Cisco Terminal Services (TS) Agent Guide, Version 1.1

Cisco Terminal Services (TS) Agent Guide, Version 1.1 First Published: 2017-05-03 Last Modified: 2017-10-13 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

Spectrum Technology Platform. Version 9.0. Geocoding Guide for Malaysia

Spectrum Technology Platform. Version 9.0. Geocoding Guide for Malaysia Spectrum Technology Platform Version 9.0 Geocoding Guide for Malaysia Contents Chapter 1: Geocode Address Global...5 Input...6 Input Fields...6 Address Input Guidelines...7 Single Line Input...7 Street

More information

Informatica Enterprise Data Catalog REST API Reference

Informatica Enterprise Data Catalog REST API Reference Informatica 10.2.1 Enterprise Data Catalog REST API Reference Informatica Enterprise Data Catalog REST API Reference 10.2.1 May 2018 Copyright Informatica LLC 2017, 2018 This software and documentation

More information

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

FIA Electronic Give-Up Agreement System (EGUS) Version 2. Administrator Guide

FIA Electronic Give-Up Agreement System (EGUS) Version 2. Administrator Guide FIA Electronic Give-Up Agreement System (EGUS) Version 2 Administrator Guide 19 November 2007 Copyright Unpublished work 2007 Markit Group Limited FIA EGUS Version 2 Administrator Guide This work is an

More information

APM Import Tool. Product Guide

APM Import Tool. Product Guide APM Import Tool Product Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only and is

More information

Prime Service Catalog: UCS Director Integration Best Practices Importing Advanced Catalogs

Prime Service Catalog: UCS Director Integration Best Practices Importing Advanced Catalogs Prime Service Catalog: UCS Director Integration Best Practices Importing Advanced Catalogs May 10, 2017 Version 1.0 Cisco Systems, Inc. Corporate Headquarters 170 West Tasman Drive San Jose, CA 95134-1706

More information

Quick Connection Guide

Quick Connection Guide ServiceNow Connector Version 1.0 Quick Connection Guide 2015 Ping Identity Corporation. All rights reserved. PingFederate ServiceNow Connector Quick Connection Guide Version 1.0 August, 2015 Ping Identity

More information

Cisco TEO Adapter Guide for Microsoft Windows

Cisco TEO Adapter Guide for Microsoft Windows Cisco TEO Adapter Guide for Microsoft Windows Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800

More information

MyCreditChain Terms of Use

MyCreditChain Terms of Use MyCreditChain Terms of Use Date: February 1, 2018 Overview The following are the terms of an agreement between you and MYCREDITCHAIN. By accessing, or using this Web site, you acknowledge that you have

More information

Informatica Cloud Spring Google BigQuery Connector Guide

Informatica Cloud Spring Google BigQuery Connector Guide Informatica Cloud Spring 2017 Google BigQuery Connector Guide Informatica Cloud Google BigQuery Connector Guide Spring 2017 October 2017 Copyright Informatica LLC 2016, 2017 This software and documentation

More information

Cloud Access Manager How to Deploy Cloud Access Manager in a Virtual Private Cloud

Cloud Access Manager How to Deploy Cloud Access Manager in a Virtual Private Cloud Cloud Access Manager 8.1.3 How to Deploy Cloud Access Manager in Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1 User Guide Informatica PowerExchange for Microsoft Azure Blob Storage User Guide 10.2 HotFix 1 July 2018 Copyright Informatica LLC

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

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

Cisco Terminal Services (TS) Agent Guide, Version 1.0

Cisco Terminal Services (TS) Agent Guide, Version 1.0 First Published: 2016-08-29 Last Modified: 2018-01-30 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

Oracle Cloud Using the File Adapter. Release 17.4

Oracle Cloud Using the File Adapter. Release 17.4 Oracle Cloud Using the File Adapter Release 17.4 E71397-08 October 2017 Oracle Cloud Using the File Adapter, Release 17.4 E71397-08 Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved.

More information

Symantec Control Compliance Suite Express Security Content Update for Microsoft Windows Server 2008 R2 (CIS Benchmark 2.1.

Symantec Control Compliance Suite Express Security Content Update for Microsoft Windows Server 2008 R2 (CIS Benchmark 2.1. Symantec Control Compliance Suite Express Security Content Update for Microsoft Windows Server 2008 R2 (CIS Benchmark 2.1.0) Release Notes Express Security Content Update for Microsoft Windows Server 2008

More information

Enterprise Vault Migrating Data Using the Microsoft Azure Blob Storage Migrator or later

Enterprise Vault Migrating Data Using the Microsoft Azure Blob Storage Migrator or later Enterprise Vault Migrating Data Using the Microsoft Azure Blob Storage Migrator 12.2 or later Enterprise Vault : Migrating Data Using the Microsoft Azure Blob Storage Migrator Last updated: 2018-04-12.

More information

JD Edwards World Electronic Burst and Bind Guide. Version A9.1

JD Edwards World Electronic Burst and Bind Guide. Version A9.1 JD Edwards World Electronic Burst and Bind Guide Version A9.1 Revised - December 15, 2007 JD Edwards World Electronic Burst and Bind Guide Copyright 2006, Oracle. All rights reserved. The Programs (which

More information

Oracle GoldenGate for Java

Oracle GoldenGate for Java Oracle GoldenGate for Java Release Notes 11g Release 1 (11.1.1) E18170-01 August 2010 Oracle GoldenGate for Java Release Notes current to 11g Release 1 (11.1.1) E18170-01 Copyright 2008, 2009, 2010 Oracle

More information

Symantec Drive Encryption Evaluation Guide

Symantec Drive Encryption Evaluation Guide Symantec Drive Encryption Evaluation Guide Getting Started Installing Symantec Encryption Management Server is the first product deployment step for any Symantec Encryption evaluation (also known as a

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

Ryft REST API - Swagger.io

Ryft REST API - Swagger.io Ryft REST API - Swagger.io User Guide Ryft Document Number: 1192 Document Version: 1.1.0 Revision Date: June 2017 2017 Ryft Systems, Inc. All Rights in this documentation are reserved. RYFT SYSTEMS, INC.

More information

CA Software Change Manager for Mainframe

CA Software Change Manager for Mainframe CA Software Change Manager for Mainframe Reports Guide r12 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

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

Copyright Basware Corporation. All rights reserved. User Guide Basware Network

Copyright Basware Corporation. All rights reserved. User Guide Basware Network Copyright 1999-2016 Basware Corporation. All rights reserved. User Guide Basware Network About Basware Network Support Documentation The following documentation is available for Basware Network users:

More information

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide One Identity Starling Two-Factor HTTP Module 2.1 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Notifications for the Payment API

Notifications for the Payment API Notifications for the Payment API Legal Disclaimer This document and the information contained herein (collectively, the "Information") is provided to you (both the individual receiving this document and

More information

Symantec Control Compliance Suite Express Security Content Update for JBoss Enterprise Application Platform 6.3. Release Notes

Symantec Control Compliance Suite Express Security Content Update for JBoss Enterprise Application Platform 6.3. Release Notes Symantec Control Compliance Suite Express Security Content Update for JBoss Enterprise Application Platform 6.3 Release Notes Express Security Content Update for JBoss Enterprise Application Platform 6.3

More information

Nuance Management Center administrator guide

Nuance Management Center administrator guide Dragon speech recognition Enterprise solution Guide Nuance Management Center administrator guide For: Copyright Dragon Professional Group/Dragon Legal Group/Dragon Law Enforcement, v15. Nuance Management

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

Encrypted Object Extension

Encrypted Object Extension Encrypted Object Extension ABSTRACT: "Publication of this Working Draft for review and comment has been approved by the Cloud Storage Technical Working Group. This draft represents a "best effort" attempt

More information

Hitachi ID Identity and Access Management Suite TRIAL USE LICENSE AGREEMENT. between

Hitachi ID Identity and Access Management Suite TRIAL USE LICENSE AGREEMENT. between between Hitachi ID Systems, Inc. (hereinafter referred to as "HIDS", "we" and/or "us") and LICENSEE (see below) (hereinafter referred to as "LICENSEE" and/or "you".) (Please complete ALL fields below by

More information

Online Batch Services

Online Batch Services Online Batch Services LexisNexis has enhanced its batch services to allow more user-friendly functionality for uploading batches and mapping layouts. Users log into the main product to access the online

More information

STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0

STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0 support@magestore.com sales@magestore.com Phone: +1-606-657-0768 STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0 Table of Contents 1. INTRODUCTION 3 Outstanding Features...3

More information

MySonicWall Secure Upgrade Plus

MySonicWall Secure Upgrade Plus June 2017 This guide describes how to upgrade a SonicWall or competitor appliance in MySonicWall using the Secure Upgrade Plus feature. Topics: About Secure Upgrade Plus Using Secure Upgrade Plus About

More information

End User License Agreement

End User License Agreement End User License Agreement Kyocera International, Inc. ( Kyocera ) End User License Agreement. CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS ( AGREEMENT ) BEFORE USING OR OTHERWISE ACCESSING THE SOFTWARE

More information

Veritas Access Enterprise Vault Solutions Guide

Veritas Access Enterprise Vault Solutions Guide Veritas Access Enterprise Vault Solutions Guide Linux 7.4.1 Veritas Access Enterprise Vault Solutions Guide Last updated: 2018-07-31 Document version: 7.4.1 Rev 0 Legal Notice Copyright 2018 Veritas Technologies

More information

Cisco UCS Director F5 BIG-IP Management Guide, Release 5.0

Cisco UCS Director F5 BIG-IP Management Guide, Release 5.0 First Published: July 31, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text

More information

Cisco Meeting Management

Cisco Meeting Management Cisco Meeting Management Cisco Meeting Management 1.1 User Guide for Administrators September 19, 2018 Cisco Systems, Inc. www.cisco.com Contents 1 Introduction 4 1.1 The software 4 2 Deployment overview

More information

KACE GO Mobile App 5.0. Getting Started Guide

KACE GO Mobile App 5.0. Getting Started Guide KACE GO Mobile App 5.0 Getting Started Guide Table of Contents Using the KACE GO Mobile App...3 Getting Started...3 What features are included in this version of the KACE GO Mobile App?...3 How do I access

More information

Operating Instructions

Operating Instructions Read this manual carefully before you use this service and keep it handy for future reference. About This Book Operating Instructions TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW: THE SUPPLIER SHALL

More information

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Installation and Configuration Guide The software described in this book is furnished under a license agreement

More information

Set Up Rules Palette

Set Up Rules Palette Oracle Insurance Policy Administration Set Up Rules Palette Installation Instructions Step 3 Version 9.5.0.0 Documentation Part Number: E23638_01 June 2012 Copyright 2009, 2012 Oracle and/or its affiliates.

More information

Enterprise Vault Guide for Outlook Users

Enterprise Vault Guide for Outlook Users Enterprise Vault Guide for Outlook Users (Full Functionality) 12.3 Enterprise Vault : Guide for Outlook Users Last updated: 2018-03-29. Legal Notice Copyright 2018 Veritas Technologies LLC. All rights

More information

Box Connector. Version 2.0. User Guide

Box Connector. Version 2.0. User Guide Box Connector Version 2.0 User Guide 2016 Ping Identity Corporation. All rights reserved. PingFederate Box Connector User Guide Version 2.0 March, 2016 Ping Identity Corporation 1001 17th Street, Suite

More information

Nexio IconStation Data Source Wizard

Nexio IconStation Data Source Wizard Nexio IconStation Data Source Wizard 6/18/2014 175-100354-00 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

Configuring Symantec Protection Engine for Network Attached Storage. Dell FluidFS 5.0

Configuring Symantec Protection Engine for Network Attached Storage. Dell FluidFS 5.0 Configuring Symantec Protection Engine for Network Attached Storage Dell FluidFS 5.0 Contents Abstract... 2 About software component... 2 How does FluidFS antivirus protect data on FluidFS cluster... 2

More information

SonicWALL CDP 2.1 Agent Tool User's Guide

SonicWALL CDP 2.1 Agent Tool User's Guide COMPREHENSIVE INTERNET SECURITY b SonicWALL CDP Series Appliances SonicWALL CDP 2.1 Agent Tool User's Guide SonicWALL CDP Agent Tool User s Guide Version 2.0 SonicWALL, Inc. 1143 Borregas Avenue Sunnyvale,

More information

AsyncOS 11.0 API - Getting Started Guide for Security Appliances

AsyncOS 11.0 API - Getting Started Guide for  Security Appliances AsyncOS 11.0 API - Getting Started Guide for Email Security Appliances First Published: 2017-12-27 Last Modified: -- Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

Creating an Address Verification Job in the Data Quality Center

Creating an Address Verification Job in the Data Quality Center Creating an Address Verification Job in the Data Quality Center 1993-2017 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

BlackBerry Java Development Environment (JDE)

BlackBerry Java Development Environment (JDE) 1 BlackBerry Java Applications for Accessing SAP Applications BlackBerry Java Development Environment The BlackBerry Java Development Environment (JDE) is a fully integrated development and simulation

More information

TIBCO Spotfire Automation Services

TIBCO Spotfire Automation Services TIBCO Spotfire Automation Services Software Release 7.9 May 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Quest NetVault Backup Plug-in for SnapMirror To Tape. User s Guide. version 7.6. Version: Product Number: NTG EN-01 NTG

Quest NetVault Backup Plug-in for SnapMirror To Tape. User s Guide. version 7.6. Version: Product Number: NTG EN-01 NTG Quest NetVault Backup Plug-in for SnapMirror To Tape version 7.6 User s Guide Version: Product Number: NTG-101-7.6-EN-01 NTG-101-7.6-EN-01 09/30/11 2011 Quest Software, Inc. ALL RIGHTS RESERVED. This guide

More information

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Legal Notice Copyright 2016 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo

More information

Oracle Spatial and Graph: An Introduction to Oracle s Geocoding Capabilities ORACLE WHITE PAPER MARCH 2017

Oracle Spatial and Graph: An Introduction to Oracle s Geocoding Capabilities ORACLE WHITE PAPER MARCH 2017 Oracle Spatial and Graph: An Introduction to Oracle s Geocoding Capabilities ORACLE WHITE PAPER MARCH 2017 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Dell One Identity Quick Connect for Cloud Services 3.6. Administrator Guide

Dell One Identity Quick Connect for Cloud Services 3.6. Administrator Guide Dell One Identity Quick Connect for Cloud Services 3.6 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

One Identity Active Roles 7.2. Web Interface User Guide

One Identity Active Roles 7.2. Web Interface User Guide One Identity Active Roles 7.2 Web Interface User Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Perceptive Data Transfer

Perceptive Data Transfer Perceptive Data Transfer User Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

Integration Guide. BlackBerry Workspaces. Version 1.0

Integration Guide. BlackBerry Workspaces. Version 1.0 Integration Guide BlackBerry Workspaces Version 1.0 Published: 2017-12-27 SWD-20171227025930338 Contents Overview... 4 Okta... 5 Add BlackBerry Workspaces to your Okta account...5 Configure BlackBerry

More information

Cisco Expressway Authenticating Accounts Using LDAP

Cisco Expressway Authenticating Accounts Using LDAP Cisco Expressway Authenticating Accounts Using LDAP Deployment Guide Cisco Expressway X8.5 December 2014 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration 4

More information

Gift, Loyalty, and Tracking Program Web Portal Operating Manual

Gift, Loyalty, and Tracking Program Web Portal Operating Manual Gift, Loyalty, and Tracking Program Web Portal Operating Manual (11/17) Need help? Web: moneris.com/support Toll-free: 1-866-319-7450 Record your Moneris merchant ID here: Contents Welcome to the Moneris

More information