API Programmer Guide for Cisco Digital Signs

Size: px
Start display at page:

Download "API Programmer Guide for Cisco Digital Signs"

Transcription

1 Cisco Digital Media Suite API Programmer Guide for Cisco Digital Signs Version Revised: September 13, 2010 Contents About This Guide... 2 Who Should Use This Guide... 2 Introduction to Cisco DMS APIs... 2 Getting Started... 2 Installation Notes... 3 Before You Begin... 3 Checking API Status... 4 Workflow... 4 Making a Web Service Call... 4 Digital Signs APIs... 5 DMP Groups... 6 DMPs Content Asset Provisioning Application provisioning Playlist Provisioning Insertions and Requestors Proof of Play Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1 of 28

2 Schedule Provisioning Emergency About This Guide Cisco Digital Signs is one component of Cisco Digital Media Suite (Cisco DMS). This guide describes Cisco APIs for third-party application developers whose products should extend or interoperate with Cisco Digital Signs. These APIs are a mechanism to insert, retrieve, update, and remove data. Similar guides on Cisco.com describe the APIs for other components of Cisco Digital Media Suite, such as Cisco Show and Share. Who Should Use This Guide This guide is a technical resource for application developers who build custom user interfaces, workflows, and vertical-specific applications that extend Cisco Digital Signs. You should have an advanced level of understanding of web technology, operation, and terminology and be familiar with Cisco Digital Signs. Application developers who use this application programming interface (API) should also have an understanding of a high-level programming language, such as Java or an equivalent language. Additionally, we recommend that you have knowledge of the following: XML and XML Schema Representational State Transfer (REST) and RESTful Services You should be familiar with using Cisco Digital Signs to manage your digital signage network. In most cases, API operations correlate to GUI operations. Introduction to Cisco DMS APIs This API uses the REST architecture, which leverages XML, HTTP, and HTTPS. This API executes requests by sending XML data to the API server. The server returns an XML response that combines an encoded REST message with an HTTP status code that states whether your request succeeded or failed. You can use this API to perform some of the same operations that are available in the web-based user interface for Cisco Digital Signs. NOTE Our implementations of Cisco DMS APIs might change over time in response to the changing needs of our partner community. We will maintain backward compatibility whenever possible but we encourage you to expect differences in future releases. Getting Started Topics in this section describe how to begin provisioning services with this API, verify the status of the API, and learn the steps in a typical workflow Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 2 of 28

3 Installation Notes Cisco Digital Signs includes all components for its own API. Aside from the requirement for a Cisco Digital Media Manager (DMM) appliance that is configured and operating correctly, this API imposes no additional startup or shutdown requirements. The only user interfaces for this API are XML-encoded messages. Before You Begin ATTENTION All applications that use API calls for Cisco Digital Signs must pass their XML data with the content type set to application/xml Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 3 of 28

4 Checking API Status NOTE Cisco Systems neither supports nor offers any warranties for DMS API Tester. Our partner community built and maintains this software utility. To test the APIs: 1. Download the Adobe AIR runtime from and install it on your computer. 2. Download DMS_API_Tester.air from 3. Install DMS_API_Tester.air., and then open it. 4. Complete these steps in DMS API Tester: a. Enter the fully qualified domain name (FQDN) of your DMM appliance in the Hostname field. For example: digitalsigns.cisco.com b. Enter the administrator s username. For example: superuser c. Enter the administrator s password. d. Choose xtas-core/services/ From the Service list. e. Choose dmpgroup_getall from the Template list. f. Click Submit. g. Accept the security alert. h. Verify that you receive a response like this one: <?xml version="1.0" encoding="utf-8"?> <DmpGroup> <id>4</id> <name>all DMPs</name> <uri> </DmpGroup> Workflow Each Digital Signs API call requires user authentication through the HTTP Basic Authentication method. Your application should pass in the username and password on each API call to guarantee a valid logged in user. All Digital Signs APIs (except multipart file uploads) support and should use HTTPS over port Making a Web Service Call The simplest way to make a web service call is to install the DMS API Tester AIR application. See Checking API Status above. This application helps you to test your API calls. ATTENTION Digital Signs uses a self-signed SSL certificate in Cisco DMS 5.2. This triggers a security alert when the first request is made using the DMS API Tester. You must accept this warning manually every time you launch the DMS API Tester and you must also ensure programmatically that your API calls accept this self-signed certificate Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 4 of 28

5 Digital Signs APIs Topics in this section describe APIs for operations that are specific to Cisco Digital Signs. These APIs are RESTful. This means that: You must set the content type for each request to application/xml. Each request leverages some combination of POSTs, s, PUTs, and DELETEs. Additionally, there are four main base entry points for Digital Signs servicers. /xtas-core/services/ /xtas-core/api/rest/ /proofofplay_core/services/ /proofofplay_campaign/services/ 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 5 of 28

6 DMP Group Provisioning DMPs are organized in logical groups. This approach favors simultaneous deployments to all members of a DMP group. A less efficient and scalable approach is to schedule sequential deployments that target individual DMPs one-by-one. Get All DMP Groups This API returns the hierarchy of your DMP groups. The ALL DMPs group at the root of this hierarchy contains all DMPs that are known to your DMM appliance. /xtas-core/services/dmpgroup/hierarchy/all/ The intended audience for this programmer guide can anticipate and understand the result that this API call returns. Nonetheless, we might document this result in a future revision to this guide. Add DMP Group This API allows for the creation of a new DMP group. POST /xtas-core/services/dmpgroup/dmpgroups/ parentid: the ID of the parent group name: the name of the dmp group description: the description of the group <n1:dmpgroup xmlns:n1=" <name> DMP_GROUP_NAME </name> <parentid> DMP_GROUP_PARENT_ID </parentid> <description> DMP_GROUP_DESCRIPTION </description> </n1:dmpgroup> The intended audience for this programmer guide can anticipate and understand the result that this API call returns. Nonetheless, we might document this result in a future revision to this guide. NOTE We do not perform any validation for the parent ID value. Please ensure that you pass only valid parent IDs Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 6 of 28

7 Update a DMP Group This API allows one to update a DMP group. PUT /xtas-core/services/dmpgroup/dmpgroups/{id} id: the ID of the dmp group parentid: the id of the parent group name: the name of the dmp group description: the description of the group <n1:dmpgroup xmlns:n1=" <id> DMP_GROUP_ID </id> <name> DMP_GROUP_NAME </name> <parentid> DMP_GROUP_PARENT_ID </parentid> <description> DMP_GROUP_DESCRIPTION </description> </n1:dmpgroup> The intended audience for this programmer guide can anticipate and understand the result that this API call returns. Nonetheless, we might document this result in a future revision to this guide. NOTE Update DMP Group only updates: name, description, and title. It does not update parent Id. Delete a DMP Group This API allows for the deletion of a new DMP group. DELETE /xtas-core/services/dmpgroup/dmpgroups/{id} Get DMPs that belong to a group This API allows for fetching all the DMPs that belong to a particular DMP Group. /xtas-core/services/dmpgroup/dmps/dmpgroup/{id} id: the ID of the group Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 7 of 28

8 Assign DMPs to a DMP groups This API allows for assigning existing DMP(s) to existing DMP Group(s). PUT /xtas-core/services/dmpgroup/dmpdmpgroup associationaction: make sure this set to set dmpidlist id: the ids of the dmps you want to add to the dmp groups dmpgroupidlist id: the ids of the dmp groups you want the dmps added to. <n1:dmpgrouptodmpassociation xmlns:n1=" <associationaction>set</associationaction> <dmpidlist> <id> DMP_ID_1 </id> <id> DMP_ID_2 </id> </dmpidlist> <dmpgroupidlist> <id> DMP_GROUP_ID_1 </id> <id> DMP_GROUP_ID_2 </id> </dmpgroupidlist> </n1:dmpgrouptodmpassociation> Unassign DMP from DMP Group This API allows for removing existing DMP(s) from existing DMP Group(s). PUT /xtas-core/services/dmpgroup/dmpdmpgroup associationaction: make sure this set to unset dmpidlist id: the ids of the dmps you want to remove from the dmp groups dmpgroupidlist id: the ids of the dmp groups you want the dmps removed from. <n1:dmpgrouptodmpassociation xmlns:n1=" <associationaction>unset</associationaction> <dmpidlist> <id> DMP_ID_1 </id> <id> DMP_ID_2 </id> </dmpidlist> <dmpgroupidlist> <id> DMP_GROUP_ID_1 </id> <id> DMP_GROUP_ID_2 </id> </dmpgroupidlist> </n1:dmpgrouptodmpassociation> 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 8 of 28

9 Assigning DMP configuration parameters to DMP Groups This API sets configuration parameter(s) to all the DMPs in a DMP group. PUT /xtas-core/services/dmpgroup/dmpgroupsconfig/ dmpgroupidlist id: the ids of the dmp groups you want the dmps removed from. Valid parameter(s) and value(s) to set and in the correct order <n1:dmpconfigure xmlns:n1=" <dmpgroupidlist> <id> DMP_GROUP_ID_1 </id> <id> DMP_GROUP_ID_2 </id> </dmpgroupidlist> <parameters> <nvp> <name> MIB_1 </name> <value> MIB_VALUE_1 </value> </nvp> <nvp> <name> MIB_2 </name> <value> MIB_VALUE_2 </value> </nvp> </parameters> </n1:dmpconfigure> NOTE The values and parameters are defined in the Digital Media Player API documentation Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 9 of 28

10 DMP Provisioning DMPs are the most granular target that can be used to deploy an application to a screen. Get DMP Details This API gives details about the DMP configuration: Name, IP address, MAC address, description and status (up or down). /xtas-core/services/dmp/dmps/{id} id: the ID of the dmp Add a DMP This API allows you to add a DMP to Digital Signs POST /xtas-core/services/dmp/dmps name: the name of the dmp you are adding ipaddress: the ip address of the dmp you are adding macaddress: the mac address of the dmp you are adding description: the description of the dmp you are adding <n1:dmp xmlns:n1=" <name> DMP_NAME </name> <ipaddress> DMP_IP </ipaddress> <macaddress> DMP_MAC_ADDRESS </macaddress> <description> DMP_DESCRIPTION </description> </n1:dmp> 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 10 of 28

11 Update DMP This API allows you to update a DMP that is already in Digital Signs. PUT /xtas-core/services/dmp/dmps/{id} id: the ID of the dmp you are updating name: the name of the dmp you are adding ipaddress: the ip address of the dmp you are adding macaddress: the mac address of the dmp you are adding description: the description of the dmp you are adding <n1:dmp xmlns:n1=" <id> DMP_ID </id> <name> DMP_NAME </name> <ipaddress> DMP_IP </ipaddress> <macaddress> DMP_MAC_ADDRESS </macaddress> <description> DMP_DESCRIPTION </description> </n1:dmp> Delete DMP This API allows you to delete a DMP from Digital Signs DELETE /xtas-core/services/dmp/dmps/{id} id: the id of the dmp Get DMP process status This API gets the status of the processes running on a DMP. /xtas-core/services/dmp/dmpprocesses/{id} id: the ID of the DMP 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 11 of 28

12 Get DMP settings This API gets all the settings of a DMP /xtas-core/services/dmp/dmpsettings/{id} id: the ID of the dmp Assign configuration parameters to DMP(s) This API sets configuration parameters on DMP(s). PUT /xtas-core/services/dmp/dmpsconfig/ dmpgroupidlist id: the ids of the dmp groups you want the dmps removed from. Valid parameter(s) and value(s) to set and in the correct order <n1:dmpconfigure xmlns:n1=" <dmpidlist> </dmpidlist> <parameters> <id> DMP_ID_1 </id> <id> DMP_ID_2 </id> <nvp> </nvp> <nvp> </nvp> </parameters> </n1:dmpconfigure> <name> MIB_1 </name> <value> MIB_VALUE_1 </value> <name> MIB_2 </name> <value> MIB_VALUE_2 </value> NOTE The values and parameters are defined in the Digital Media Player API documentation Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 12 of 28

13 Publish application to a DMP This API publishes an application to a DMP. POST /xtas-core/api/rest/application/{app_id}/dmp/{dmp_id} app_id: the ID of athe application you want to publish dmp_id: the ID of the dmp you want the application published to <application/> The intended audience for this programmer guide can anticipate and understand the result that this API call returns. Nonetheless, we might document this result in a future revision to this guide. NOTE We do not validate the DMP ID. Therefore, this API will return an HTTP status code 200 OK message even when you pass an DMP ID that is not valid. Please ensure that you pass the <application/> tag, if you do not pass it you will get a 404 Not Found exception Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 13 of 28

14 Content Asset Provisioning Assets in Digital Signs are files that are used to create applications. Assets can not directly be deployed to DMPs. Assets have to be wrapped in applications to be deployed to DMPs. The smallest application that can be deployed to a sign is a single asset inside of a playlist (playlist is an application). These APIs allow for the creation and management of Digital Signs assets. Get Category Tree Assets are organized in hierarchical categories. Each asset can only belong to one category branch. This API is used to identify each category. /xtas-core/services/content/categories/ The intended audience for this programmer guide can anticipate and understand the result that this API call returns. Nonetheless, we might document this result in a future revision to this guide. NOTE In Cisco DMS 5.2, you cannot use this API to add, update or delete asset categories. Get Content Asset List for a Category This API returns a list of the assets in a particular category. /xtas-core/services/content/assets/category/{id} id: the ID of the category 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 14 of 28

15 Upload an Asset This API is used to create a new asset in the Digital Signs media library by uploading a file. Uploading an asset is done through a multi-part form. This multipart form uploads a file with the input name upfile and also the xml with the input name data. POST /xtas-core/services/content/assets/ title: the title for the asset filename: the file s name description: the description of the file filetype: can be FLASH, HTML, IMAGES,UDP, or VIDEO estimatedduration: the default amount of time the asset should stay on screen categoryidlist id: the ID of the category the asset should belong to assetowner: the username of the owner adding the asset This sample HTML file shows how to upload an asset: <html> <body> <form action=" YOUR_HOSTNAME :8080/xTAScore/services/content/assets/" enctype="multipart/form-data" method="post"> File to upload: <input type="file" name="upload_file"/> <br/> data: <textarea cols="40" rows="20" name="data"></textarea> <br/> <input type="submit" value="upload"/> </form> </body> </html> data should be of the XML format: <n1:asset xmlns:n1=" > </n1:asset> <title> ASSET_TITLE </title> <filename> ASSET_FILE_NAME </filename> <description> ASSET_DESCRIPTION </description> <filetype> VALID_FILE_TYPE </filetype> <estimatedduration> <Hours>0</Hours> <Minutes>0</Minutes> <Seconds>0</Seconds> </estimatedduration> <categoryidlist> <id> CATEGORY_ID </id> </categoryidlist> <assetowner> USER_NAME </assetowner> <storagetype>file</storagetype> <downloadurl>true</downloadurl> this API call returns. Nonetheless, we might document this result in a future revision to this guide Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 15 of 28

16 Add Asset from This API is used to create a new asset in the Digital Signs media library from a valid. Uploading an asset is done through a multi-part form. This multipart form only contains an xml with the input name data. POST /xtas-core/services/content/assets/ title: thte title for the asset filename: the url to the file description: the description of the file filetype: can be FLASH, HTML, IMAGES,UDP, or VIDEO estimatedduration: the default amount of time the asset should stay on screen categoryidlist id: the ID of the category the asset should belong to assetowner: the username of the owner adding the asset This sample HTML illustrates how to upload an asset: <body> <html> <form action=" YOUR_HOSTNAME :8080/xTAScore/services/content/assets/" enctype="multipart/form-data" method="post"> data: <textarea cols="40" rows="20" name="data"></textarea> <br/> <input type="submit" value="upload"/> </form> </body> </html> data should be of the xml format: <n1:asset xmlns:n1=" > </n1:asset> <title> ASSET_TITLE </title> <filename> ASSET_FILE_NAME </filename> <description> ASSET_DESCRIPTION </description> <filetype> VALID_FILE_TYPE </filetype> <estimatedduration> <Hours>0</Hours> <Minutes>0</Minutes> <Seconds>0</Seconds> </estimatedduration> <categoryidlist> <id> CATEGORY_ID </id> </categoryidlist> <assetowner> USER_NAME </assetowner> <storagetype>url</storagetype> <downloadurl>true</downloadurl> NOTE Titles must be unique and cannot be blank. Please ensure that your DMM appliance can resolve any that you use the API to pass. Verify that DNS settings are correct in the Application Administration Interface (AAI) command shell Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 16 of 28

17 Get Asset Details This API returns details about a specific asset. /xtas-core/services/content/assets/{id} id: the asset ID Update Asset This API helps you to edit the metadata for a specific asset. POST /xtas-core/services/content/assets/ The asset details should be retrieved first using Get Asset details API above This sample HTML illustrates how to upload an asset: <html> <body> <form action=" YOUR_HOSTNAME :8080/xTAScore/services/content/assets/" enctype="multipart/form-data" method="post"> data: <textarea cols="40" rows="20" name="data"></textarea> <br/><input type="submit" value="upload"/> </form> </body> </html> data should be of the xml format: <n1:editasset xmlns:n1=" agement"> <id> ASSET_ID </id> <assetbasic> <title> ASSET_TITLE </title> <filename> ASSET_FILE_NAME </filename> <description> ASSET_DESCRIPTION </description> <filetype> VALID_FILE_TYPE </filetype> <estimatedduration> <Hours>0</Hours> <Minutes>0</Minutes> <Seconds>0</Seconds> </estimatedduration> <categoryidlist> <id> CATEGORY_ID </id> </categoryidlist> <assetowner> USER_NAME </assetowner> <storagetype> url_or_file </storagetype> <downloadurl>true</downloadurl> </assetbasic> <keepexisting>true</keepexisting> </n1:editasset> 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 17 of 28

18 Delete Asset This API helps you to delete an asset from the media library. DELETE /xtas-core/services/content/assets/{id} id: the asset ID Application Provisioning Applications are the smallest unit in Digital Signs that can be deployed to a DMP or a DMP group. NOTE Except for the Playlist application, DMS 5.2 APIs do not expose the creation or deletion of applications. Get all Applications This API returns a list of all applications. /xtas-core/services/app/apps/ 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 18 of 28

19 Application Provisioning - Playlists A playlist is a Digital Signs application which plays and loops Digital Signs assets. Add a Playlist This API helps you to create a playlist. POST /xtas-core/api/rest/playlist resolution: e.g. 1024X768 randomize: true if the playlist order should be random, otherwise false popenable: true if proof of play should be used on this playlist, otherwise false description: the description of the playlist title: the title of the playlist hours: can be set to 0, or the amount of hours for the asset to stay on screen minutes: can be set to 0, or the amount of minutes for the asset to stay on screen seconds: can be set to 0, or the amount of seconds for the asset to stay on screen assetid: the asset to be used <n2:playlist xmlns:xsi=" xmlns:n2=" ment"> <n2:resolution> RESOLUTION </n2:resolution> <n2:randomize> IS_RANDOMIZED </n2:randomize> <n2:popenable> IS_POP_ENABLED </n2:popenable> <n2:description> DESCRIPTION </n2:description> <n2:owner> USERNAME </n2:owner> <n2:title> TITLE </n2:title> <n2:playlistitems> <n2:item> <n2:plannedduration> <n2:hours> HOURS </n2:hours> <n2:minutes> MINUTES </n2:minutes> <n2:seconds> SECONDS </n2:seconds> </n2:plannedduration> <n2:asset> <n2:assetid> ASSET_ID </n2:assetid> </n2:asset> </n2:item> </n2:playlistitems> </n2:playlist> The intended audience for this programmer guide can anticipate and understand the result that this API call returns. Nonetheless, we might document this result in a future revision to this guide. Get playlist details This API returns information about a particular playlist. /xtas-core/api/rest/playlist/detail/{id} id: the ID of the playlist 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 19 of 28

20 Edit a playlist This API helps you to edit a playlist PUT /xtas-core/api/rest/playlist/{id} id: the ID of the playlist resolution: e.g. 1024X768 randomize: true if the playlist order should be random, otherwise false popenable: true if proof of play should be used on this playlist, otherwise false description: the description of the playlist title: the title of the playlist hours: can be set to 0, or the amount of hours for the asset to stay on screen minutes: can be set to 0, or the amount of minutes for the asset to stay on screen seconds: can be set to 0, or the amount of seconds for the asset to stay on screen assetid: the asset to be used <n2:playlist xmlns:xsi=" xmlns:n2=" <n2:id> PLAYLIST_ID </n2:id> <n2:resolution> RESOLUTION </n2:resolution> <n2:randomize> IS_RANDOMIZED </n2:randomize> <n2:popenable> IS_POP_ENABLED </n2:popenable> <n2:description> DESCRIPTION </n2:description> <n2:owner> USERNAME </n2:owner> <n2:title> TITLE </n2:title> <n2:playlistitems> <n2:item> </n2:item> <n2:plannedduration> <n2:hours> HOURS </n2:hours> <n2:minutes> MINUTES </n2:minutes> <n2:seconds> SECONDS </n2:seconds> </n2:plannedduration> <n2:asset> </n2:asset> </n2:playlistitems> </n2:playlist> <n2:assetid> ASSET_ID </n2:assetid> Delete playlist This API helps you to delete a playlist. DELETE /xtas-core/api/rest/playlist/{id} id: the ID of the playlist 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 20 of 28

21 Insertion and Requestor Provisioning Cisco DMS 5.2 introduces two new concepts: Insertions and Requestors. A Requestor is a named entity that makes use of named Insertions. Insertions are containers for assets. We use information about Requestors and Insertions both, when we generate Proof of Play reports. A note on nomenclature: Insertions and Requestors were previously named Campaigns and Agencies, respectively. While this update in nomenclature is used throughout this document, the API calls themselves still refer to the older terms. Get All Requestors This API returns a list of all named Requestors. /proofofplay_campaign/services/agencies Get Requestor detail This API returns details about a particular Requestor. /proofofplay_campaign/services/agencies/{id} id: the Requestor id Create new Requestor This API helps you to create a new Requestor. POST /proofofplay_campaign/services/agencies name: the name of the Requestor description: the description of the Requestor <ns2:agency xmlns:ns2=" </ns2:agency> <name> OR_NAME </name> <description> OR_DESCRIPTION </description> The intended audience for this programmer guide can anticipate and understand the result that this API call returns. Nonetheless, we might document this result in a future revision to this guide Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 21 of 28

22 Edit Requestor This API helps you to edit the metadata that describes a Requestor. PUT /proofofplay_campaign/services/agencies/{id} id: the ID of the Requestor name: the name of the Requestor description: the description of the Requestor <ns2:agency xmlns:ns2=" </ns2:agency> <name> OR_NAME </name> <description> OR_DESCRIPTION </description> Delete Requestor This API helps you to delete a Requestor. DELETE /proofofplay_campaign/services/agencies/{id} id: the ID of the Requestor Get list of Insertions This API is used to get a list of Insertions /proofofplay_campaign/services/campaigns?start={startvalue}&limit={limitvalu e} Pagination params are optional. If they exist, they should be >= Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 22 of 28

23 Add New Insertion This API is used to add a new Insertion POST /proofofplay_campaign/services/campaigns name: the name of the insertion startdate: the start date of the insertion requestorid: the ID of the Requestor the insertion belongs to resource id: the ID of the application this insertion should track <ns2:campaign xmlns:ns2=" ement"> <name> INSERTION_NAME </name> <description> INSERTION_DESCRIPTION </description> <startdate> START_DATE YYYY-MM-DD </startdate> <enddate> OPTIONAL_END_DATE YYYY-MM-DD </enddate> <agencyid> OR_ID </agencyid> <resources> <resource> <id> APPLICATION_ID </id> <resourcetype>dsm::application</resourcetype> </resource> </resources> </ns2:campaign> Edit Insertion This API is used to update a particular Insertion. PUT /proofofplay_campaign/services/campaigns/{id} insertionid: the ID of the Insertion name: the name of the Insertion startdate: the start date of the Insertion requestorid: the ID of the Requestor the insertion belongs to resource id: the ID of the application this insertion should track 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 23 of 28

24 <ns2:campaign xmlns:ns2=" ement"> <name> INSERTION_NAME </name> <description> INSERTION_DESCRIPTION </description> <startdate> START_DATE YYYY-MM-DD </startdate> <enddate> OPTIONAL_END_DATE YYYY-MM-DD </enddate> <agencyid> OR_ID </agencyid> <resources> <resource> <id> APPLICATION_ID </id> <resourcetype>dsm::application</resourcetype> </resource> </resources> </ns2:campaign> Delete Insertion This API is used to delete a particular Insertion. POST /proofofplay_campaign/services/campaigns/batchdeletion insertionid: the ID of the insertion you want to delete <ns2:campaigndeletion xmlns:ns2=" <id> INSERTION_ID </id> </ns2:campaigndeletion> 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 24 of 28

25 Proof of Play Proof of Play APIs allow you to generate reports for each Insertion. Get Insertion summary reports This API returns a summary report for a particular Insertion. /proofofplay_core/services/reports/error/campaign/{id}/fromdate/{yyyymm DD}/toDate/{YYYYMMDD}/ id: Insertion id fromdate: desired start date of the report todate: desired end date of the report Get Insertion success reports This API returns a success report for a particular Insertion. /proofofplay_core/services/reports/success/campaign/{id}/fromdate/{yyyy MMDD}/toDate/{YYYYMMDD}/ id: insertion id fromdate: desired start date of the report todate: desired end date of the report Get Insertion error reports This API returns an error report for a particular Insertion. /proofofplay_core/services/reports/success/campaign/{id}/fromdate/{yyyy MMDD}/toDate/{YYYYMMDD}/ id: insertion id fromdate: desired start date of the report todate: desired end date of the report 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 25 of 28

26 Schedule Provisioning These APIs help you see future deployments of applications to DMPs. Get all applications scheduled for a date This API returns a list of all applications that are scheduled to deploy on a given date. ATTENTION This API requires media type to be set to text/xml NOT application/xml /xtas-core/api/rest/scheduler/schedule/date/{yyyy-mm-dd} date: the date for which you d like to get the schedule 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 26 of 28

27 Emergency These APIs help you to override the saved schedule and publish an emergency application to a group of DMPs. Start Emergency Messaging This API starts the emergency. POST /xtas-core/api/rest/emergency/start emergencyapplication id: the ID of the application to use as an emergency group id: the ID of the group to which the emergency application applies <singleemergencystart xsi:nonamespaceschemalocation=" i/emergency.xsd" xmlns:xsi=" <emergencyapplication id=" APPLICATION_ID "> <grouplist> <group id=" DMP_GROUP_ID "/> </grouplist> </emergencyapplication> </singleemergencystart> Stop Emergency messaging This API stops the emergency. POST /xtas-core/api/rest/emergency/stop group id: the ID of the group to which the emergency application applies <singleemergencystop> <grouplist> <group id=" DMP_GROUP_ID "/> </grouplist> </singleemergencystop> 2010 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 27 of 28

28 Printed in USA CXX-XXXXXX-XX 01/ Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 28 of 28

Platform Services API Programmer Guide for Cisco Digital Media Suite 5.2.3

Platform Services API Programmer Guide for Cisco Digital Media Suite 5.2.3 Cisco Digital Media Suite 5.2.3 Platform Services API Programmer Guide for Cisco Digital Media Suite 5.2.3 Version 1.0 Revised: May 17, 2011 2010 Cisco Systems, Inc. All rights reserved. This document

More information

API Programmer Guide for Cisco Show and Share Release 5.2.3, 5.3.x, and 5.5

API Programmer Guide for Cisco Show and Share Release 5.2.3, 5.3.x, and 5.5 Cisco Digital Media Suite Release 5.2.3, 5.3.x, and 5.5 API Programmer Guide for Cisco Show and Share Release 5.2.3, 5.3.x, and 5.5 Version 0.9 Revised: October 2014 2010-2014 Cisco Systems, Inc. All rights

More information

Upgrade Guide for Cisco Digital Media System Release 5.0

Upgrade Guide for Cisco Digital Media System Release 5.0 Upgrade Guide for Cisco Digital Media System Release 5.0 Revised: December 12, 2008, This guide provides information about and instructions for upgrading your Cisco DMS appliances and Cisco Digital Media

More information

Setting Up Resources in VMware Identity Manager. VMware Identity Manager 2.8

Setting Up Resources in VMware Identity Manager. VMware Identity Manager 2.8 Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.8 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Using the Horizon vrealize Orchestrator Plug-In

Using the Horizon vrealize Orchestrator Plug-In Using the Horizon vrealize Orchestrator Plug-In VMware Horizon 6 version 6.2.3, VMware Horizon 7 versions 7.0.3 and later Modified on 4 JAN 2018 VMware Horizon 7 7.4 You can find the most up-to-date technical

More information

Introduction to the Cisco ANM Web Services API

Introduction to the Cisco ANM Web Services API 1 CHAPTER This chapter describes the Cisco ANM Web Services application programming interface (API), which provides a programmable interface for system developers to integrate with customized or third-party

More information

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) You can find the most up-to-date

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

IBM Proventia Management SiteProtector Policies and Responses Configuration Guide

IBM Proventia Management SiteProtector Policies and Responses Configuration Guide IBM Internet Security Systems IBM Proventia Management SiteProtector Policies and Responses Configuration Guide Version2.0,ServicePack8.1 Note Before using this information and the product it supports,

More information

Managing Administrative Settings for Cisco DMS Components and Users

Managing Administrative Settings for Cisco DMS Components and Users 2 CHAPTER Managing Administrative Settings for Cisco DMS Components and Users Revised: December 4, 2008, Activation Software feature modules for Cisco DMS are purchased and licensed separately. Features

More information

Software Defined Infrastructure. FileLocker. Application Programming Interface Documentation

Software Defined Infrastructure. FileLocker. Application Programming Interface Documentation TM Software Defined Infrastructure FileLocker Application Programming Interface Documentation Infrascale 2013 Phone: +1.877.896.3611 Web: www.infrascale.com Table of Contents API URL and Base Parameters...

More information

System Administration

System Administration Most of SocialMiner system administration is performed using the panel. This section describes the parts of the panel as well as other administrative procedures including backup and restore, managing certificates,

More information

EMC White Paper. BPS http Listener. Installing and Configuring

EMC White Paper. BPS http Listener. Installing and Configuring EMC White Paper BPS http Listener Installing and Configuring March 2006 Copyright 2005 EMC Corporation. All rights reserved. EMC believes the information in this publication is accurate as of its publication

More information

Transcode and Add Pulse Video Analytics to Video Content on Cisco Show and Share

Transcode and Add Pulse Video Analytics to Video Content on Cisco Show and Share Transcode and Add Pulse Video Analytics to Video Content on Cisco Show and Share Revised: February 26, 2013 When Cisco MXE 3500 integration is enabled in Cisco Show and Share, videos uploaded to Cisco

More information

Administrator Guide for Cisco Show and Share 5.2.x

Administrator Guide for Cisco Show and Share 5.2.x Administrator Guide for Cisco Show and Share 5.2.x Including Show and Share Reports 5.2.x May 31, 2011 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Managing Certificates

Managing Certificates CHAPTER 12 The Cisco Identity Services Engine (Cisco ISE) relies on public key infrastructure (PKI) to provide secure communication for the following: Client and server authentication for Transport Layer

More information

Integration Architecture Of SDMS

Integration Architecture Of SDMS Integration Architecture Of SDMS 20 May 2017 Version 1.0 (Rakesh Ranjan, Consultant-IT) Table of Content 1 ABOUT SDMS...2 2 OBJECTIVE & STRUCTURE OF THIS DOCUMENT...2 3 TRANSACTIONAL SERVICES...3 3.1 HIGH

More information

Using Application Template Definitions

Using Application Template Definitions CHAPTER 4 This chapter describes how to use Cisco Application Networking Manager (ANM) application template definitions for configuring ACE virtual contexts. This chapter uses the terms virtual context

More information

Managing CX Devices in Multiple Device Mode

Managing CX Devices in Multiple Device Mode Tip Device inventory management applies to PRSM in Multiple Device mode only. If you are configuring a CX device through a direct connection to the device, you do not need to add the device to the inventory

More information

Using the VMware vrealize Orchestrator Client

Using the VMware vrealize Orchestrator Client Using the VMware vrealize Orchestrator Client vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

XML Services Troubleshooting

XML Services Troubleshooting XML Services Troubleshooting This chapter contains the following topics: Overview, page 27 Architecture, page 28 Troubleshooting Tools, page 30 Troubleshooting Checklist, page 31 Error Reporting, page

More information

EnterpriseTrack Reporting Data Model Configuration Guide Version 17

EnterpriseTrack Reporting Data Model Configuration Guide Version 17 EnterpriseTrack EnterpriseTrack Reporting Data Model Configuration Guide Version 17 October 2018 Contents About This Guide... 5 Configuring EnterpriseTrack for Reporting... 7 Enabling the Reporting Data

More information

Smart Install in LMS CHAPTER

Smart Install in LMS CHAPTER CHAPTER 6 Smart Install (SI) is a plug-and-play configuration and image management feature that provides zero-touch deployment for new switches. You can configure SI on a switch which will then be the

More information

SAML-Based SSO Configuration

SAML-Based SSO Configuration Prerequisites, page 1 SAML SSO Configuration Task Flow, page 5 Reconfigure OpenAM SSO to SAML SSO Following an Upgrade, page 9 SAML SSO Deployment Interactions and Restrictions, page 9 Prerequisites NTP

More information

Getting Started Using Cisco License Manager

Getting Started Using Cisco License Manager CHAPTER 5 This chapter provides information about the initial setup of Cisco License Manager and an overview of recommended steps to quickly add users and devices and obtain and deploy licenses. This chapter

More information

CHAPTER. Introduction

CHAPTER. Introduction CHAPTER 1 Cisco Unified Communications Manager (formerly Cisco Unified CallManager) serves as the software-based call-processing component of the Cisco Unified Communications family of products. A wide

More information

vrealize Automation Management Pack 2.0 Guide

vrealize Automation Management Pack 2.0 Guide vrealize Automation Management Pack 2.0 Guide This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for

More information

CloudLink SecureVM. Administration Guide. Version 4.0 P/N REV 01

CloudLink SecureVM. Administration Guide. Version 4.0 P/N REV 01 CloudLink SecureVM Version 4.0 Administration Guide P/N 302-002-056 REV 01 Copyright 2015 EMC Corporation. All rights reserved. Published June 2015 EMC believes the information in this publication is accurate

More information

Management Tools. Management Tools. About the Management GUI. About the CLI. This chapter contains the following sections:

Management Tools. Management Tools. About the Management GUI. About the CLI. This chapter contains the following sections: This chapter contains the following sections:, page 1 About the Management GUI, page 1 About the CLI, page 1 User Login Menu Options, page 2 Customizing the GUI and CLI Banners, page 3 REST API, page 3

More information

Security and Monitoring

Security and Monitoring Logout Inactivity Timer, page 1 Problem Reporting, page 1 Set Device PIN, page 3 Silent Monitoring and Call Recording, page 4 Telemetry, page 4 Logout Inactivity Timer Applies to: All clients The sign

More information

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5 Using the vrealize Orchestrator Operations Client vrealize Orchestrator 7.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

System Setup. Accessing the Administration Interface CHAPTER

System Setup. Accessing the Administration Interface CHAPTER CHAPTER 3 The system can be configured through the web interface to provide the networking configuration for the appliance and other system settings that are important such as time and SSL certificate.

More information

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Use Plug and Play to Deploy New Devices

Use Plug and Play to Deploy New Devices About Plug and Play, page 1 Prerequisites for Using Plug and Play, page 2 Plug and Play Workflow, page 2 Use the Plug and Play Dashboard to Monitor New Device Deployments, page 4 Create Plug and Play Profiles

More information

Installing and Configuring vcenter Support Assistant

Installing and Configuring vcenter Support Assistant Installing and Configuring vcenter Support Assistant vcenter Support Assistant 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

ForeScout CounterACT. Controller Plugin. Configuration Guide. Version 1.0

ForeScout CounterACT. Controller Plugin. Configuration Guide. Version 1.0 ForeScout CounterACT Network Module: Centralized Network Controller Plugin Version 1.0 Table of Contents About the Centralized Network Controller Integration... 4 About This Plugin... 4 How It Works...

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

Upgrade Guide for Cisco Digital Media Suite Release 5.2

Upgrade Guide for Cisco Digital Media Suite Release 5.2 Upgrade Guide for Cisco Digital Media Suite Release 5.2 Revised: June 24, 2010 Warning Before you upgrade your Cisco Digital Media Suite (Cisco DMS) environment, read this document carefully. It contains

More information

Using ZENworks with Novell Service Desk

Using ZENworks with Novell Service Desk www.novell.com/documentation Using ZENworks with Novell Service Desk Novell Service Desk 7.1 April 2015 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or

More information

The Cisco Show and Share mobile client for Apple ios devices will provide the following features when connected to a Cisco Show and Share system:

The Cisco Show and Share mobile client for Apple ios devices will provide the following features when connected to a Cisco Show and Share system: Data Sheet Cisco Show and Share Product Overview The Cisco Digital Media Suite (DMS) is a comprehensive offering of webcasting and video sharing, digital signage, and business IPTV applications that can

More information

Kaltura's Entitlement Infrastructure Bulk Services. Version: Falcon

Kaltura's Entitlement Infrastructure Bulk Services. Version: Falcon Kaltura's Entitlement Infrastructure Bulk Services Version: Falcon Kaltura Business Headquarters 200 Park Avenue South, New York, NY. 10003, USA Tel.: +1 800 871 5224 Copyright 2011 Kaltura Inc. All Rights

More information

Deploying the Cisco ASA 1000V

Deploying the Cisco ASA 1000V CHAPTER 2 This chapter includes the following sections: Information About the ASA 1000V Deployment, page 2-1 Downloading the ASA 1000V OVA File, page 2-7 Deploying the ASA 1000V Using the VMware vsphere

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 2.4.5 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 4 4 Examine the Tower Dashboard 6 5 The Setup

More information

Recovery Procedure for Cisco Digital Media Manager 5.2

Recovery Procedure for Cisco Digital Media Manager 5.2 CHAPTER 1 Recovery Procedure for Cisco Digital Media Manager 5.2 Revised: May 3, 2010, This document provides the information that you require to recover from a software failure of the Cisco Digital Media

More information

Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide

Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide Published: 2018-Oct-09 Contents 1 Microsoft SharePoint 2013, 2016 and Online Connector 4 1.1 Products 4 1.2 Supported

More information

Managing Workflows. Starting Prime Network Administration CHAPTER

Managing Workflows. Starting Prime Network Administration CHAPTER CHAPTER 10 Prime Network Administration can be used to manage deployed workflow templates. Topics include: Starting Prime Network Administration, page 10-1 Viewing the List of Templates and Template Properties,

More information

Advanced Service Design. vrealize Automation 6.2

Advanced Service Design. vrealize Automation 6.2 vrealize Automation 6.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit your feedback to

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Cisco Connected Mobile Experiences REST API Getting Started Guide, Release 10.2

Cisco Connected Mobile Experiences REST API Getting Started Guide, Release 10.2 Cisco Connected Mobile Experiences REST API Getting Started Guide, Release 10.2 First Published: August 12, 2016 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

Introduction to Cisco UCS Central

Introduction to Cisco UCS Central Introducing Cisco UCS Central, page 1 Introducing Cisco UCS Central Cisco UCS Central provides scalable management solution for growing Cisco UCS environment. Cisco UCS Central simplifies the management

More information

Using SSL to Secure Client/Server Connections

Using SSL to Secure Client/Server Connections Using SSL to Secure Client/Server Connections Using SSL to Secure Client/Server Connections, page 1 Using SSL to Secure Client/Server Connections Introduction This chapter contains information on creating

More information

BMC FootPrints 12 Integration with Remote Support

BMC FootPrints 12 Integration with Remote Support BMC FootPrints 12 Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

More information

Setting Up the Server

Setting Up the Server Managing Licenses, page 1 Cross-launch from Prime Collaboration Provisioning, page 5 Integrating Prime Collaboration Servers, page 6 Single Sign-On for Prime Collaboration, page 7 Changing the SSL Port,

More information

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) You can find the most up-to-date technical documentation

More information

Configuring CWMP Service

Configuring CWMP Service CHAPTER 12 This chapter describes how to configure the CWMP service in Cisco Broadband Access Center (BAC). Topics covered are:, page 12-1 Configuring Service Ports on the DPE, page 12-2 Disabling Connection

More information

Using vrealize Operations Tenant App as a Service Provider

Using vrealize Operations Tenant App as a Service Provider Using vrealize Operations Tenant App as a Service Provider Using vrealize Operations Tenant App as a Service Provider You can find the most up-to-date technical documentation on the VMware Web site at:

More information

Cisco ISE pxgrid App 1.0 for IBM QRadar SIEM. Author: John Eppich

Cisco ISE pxgrid App 1.0 for IBM QRadar SIEM. Author: John Eppich Cisco ISE pxgrid App 1.0 for IBM QRadar SIEM Author: John Eppich Table of Contents About This Document... 4 Solution Overview... 5 Technical Details... 6 Cisco ISE pxgrid Installation... 7 Generating the

More information

IaaS Integration for Multi- Machine Services. vrealize Automation 6.2

IaaS Integration for Multi- Machine Services. vrealize Automation 6.2 IaaS Integration for Multi- Machine Services vrealize Automation 6.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

vcloud Director Administrator's Guide

vcloud Director Administrator's Guide vcloud Director 5.1.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of

More information

Infoblox Authenticated DHCP

Infoblox Authenticated DHCP Infoblox Authenticated DHCP Unified Visitor Management amigopod Technical Note Revision 1.1 5 July 2010 United States of America +1 (888) 590-0882 Europe, Middle East & Asia +34 91 766 57 22 Australia

More information

Workspace ONE UEM Certificate Authentication for Cisco IPSec VPN. VMware Workspace ONE UEM 1810

Workspace ONE UEM Certificate Authentication for Cisco IPSec VPN. VMware Workspace ONE UEM 1810 Workspace ONE UEM Certificate Authentication for Cisco IPSec VPN VMware Workspace ONE UEM 1810 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

This chapter describes the tasks that you perform after installing Prime Cable Provisioning.

This chapter describes the tasks that you perform after installing Prime Cable Provisioning. This chapter describes the tasks that you perform after installing Prime Cable Provisioning. Licensing Prime Cable Provisioning, page 1 Cisco Prime Network Registrar Configurations, page 5 Setting Up a

More information

How to Set Up External CA VPN Certificates

How to Set Up External CA VPN Certificates To configure a client-to-site, or site-to-site VPN using s created by External CA, you must create the following VPN s for the VPN service to be able to authenticate Before you begin Use an external CA

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Network Deployments in Cisco ISE

Network Deployments in Cisco ISE Cisco ISE Network Architecture, page 1 Cisco ISE Deployment Terminology, page Node Types and Personas in Distributed Deployments, page Standalone and Distributed ISE Deployments, page 4 Distributed Deployment

More information

<Partner Name> RSA NETWITNESS Security Operations Implementation Guide. Swimlane 2.x. <Partner Product>

<Partner Name> RSA NETWITNESS Security Operations Implementation Guide. Swimlane 2.x. <Partner Product> RSA NETWITNESS Security Operations Implementation Guide Jeffrey Carlson, RSA Partner Engineering Last Modified: 05/01/2017 Solution Summary The RSA NetWitness integration

More information

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018 ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk November 2018 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions,

More information

AirWatch Mobile Device Management

AirWatch Mobile Device Management RSA Ready Implementation Guide for 3rd Party PKI Applications Last Modified: November 26 th, 2014 Partner Information Product Information Partner Name Web Site Product Name Version & Platform Product Description

More information

WeChat Adobe Campaign Integration - User Guide

WeChat Adobe Campaign Integration - User Guide WeChat Adobe Campaign Integration - User Guide Table of Contents 1. Verticurl App Account Creation... 1 2. Configuration Setup in Verticurl App... 2 3. Configure QR Code Service... 3 3.1 QR code service

More information

Network Deployments in Cisco ISE

Network Deployments in Cisco ISE Cisco ISE Network Architecture, page 1 Cisco ISE Deployment Terminology, page 2 Node Types and Personas in Distributed Deployments, page 2 Standalone and Distributed ISE Deployments, page 4 Distributed

More information

Technical Overview. Version March 2018 Author: Vittorio Bertola

Technical Overview. Version March 2018 Author: Vittorio Bertola Technical Overview Version 1.2.3 26 March 2018 Author: Vittorio Bertola vittorio.bertola@open-xchange.com This document is copyrighted by its authors and is released under a CC-BY-ND-3.0 license, which

More information

Getting Started with Prime Network

Getting Started with Prime Network CHAPTER 1 These topics provide some basic steps for getting started with Prime Network, such as how to set up the system and the basic parts of the Prime Network Administration GUI client. Basic Steps

More information

Using the Horizon vcenter Orchestrator Plug-In. VMware Horizon 6 6.0

Using the Horizon vcenter Orchestrator Plug-In. VMware Horizon 6 6.0 Using the Horizon vcenter Orchestrator Plug-In VMware Horizon 6 6.0 You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The VMware Web site also

More information

Cisco Show and Share Failover Configuration

Cisco Show and Share Failover Configuration CHAPTER 3 Revised: March 2011, This chapter describes how to configure failover on a Cisco Show and Share installation. It covers both new installations and adding failover to an existing installation.

More information

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Table of Contents Introduction.... 3 Requirements.... 3 Horizon Workspace Components.... 3 SAML 2.0 Standard.... 3 Authentication

More information

<Partner Name> <Partner Product> RSA ARCHER GRC Platform Implementation Guide. Swimlane 2.x

<Partner Name> <Partner Product> RSA ARCHER GRC Platform Implementation Guide. Swimlane 2.x RSA ARCHER GRC Platform Implementation Guide Jeffrey Carlson, RSA Partner Engineering Last Modified: 11/02/2017 Solution Summary The RSA Archer integration allows Swimlane

More information

SAML-Based SSO Configuration

SAML-Based SSO Configuration Prerequisites, page 1 SAML SSO Configuration Workflow, page 5 Reconfigure OpenAM SSO to SAML SSO After an Upgrade, page 9 Prerequisites NTP Setup In SAML SSO, Network Time Protocol (NTP) enables clock

More information

Cisco Integrated Management Controller (IMC) Supervisor is a management system that allows you to manage rack mount servers on a large scale.

Cisco Integrated Management Controller (IMC) Supervisor is a management system that allows you to manage rack mount servers on a large scale. Contents Introduction Prerequisites Requirements Qualified Serviers Minimum Firmware Versions Supported PCiE Cards Supported Hypervisor versions Supported Browser Versions Configure Deploying Cisco IMC

More information

White paper Viz One APIs. Overview of our API Offering

White paper Viz One APIs. Overview of our API Offering White paper Viz One APIs Overview of our API Offering The Viz One is more than just a production, management and distribution system. A broad range of APIs, extend its capacity to numerous alternative

More information

Description of CORE Implementation in Java

Description of CORE Implementation in Java Partner s name: Istat WP number and name: WP6 Implementation library for generic interface and production chain for Java Deliverable number and name: 6.1 Description of Implementation in Java Description

More information

NETCONF Protocol. Restrictions for the NETCONF Protocol. Information About the NETCONF Protocol

NETCONF Protocol. Restrictions for the NETCONF Protocol. Information About the NETCONF Protocol Restrictions for the, on page 1 Information About the, on page 1 How to Configure the, on page 4 Verifying the Configuration, on page 7 Additional References for, on page 9 Feature Information for, on

More information

ECDS MDE 100XVB Installation Guide on ISR G2 UCS-E and VMWare vsphere Hypervisor (ESXi)

ECDS MDE 100XVB Installation Guide on ISR G2 UCS-E and VMWare vsphere Hypervisor (ESXi) ECDS MDE 100XVB Installation Guide on ISR G2 UCS-E and VMWare vsphere Hypervisor (ESXi) Revised: November, 2013 Contents Overview, page 1 Guidelines and Limitations, page 1 Prerequisites, page 2 Installation

More information

Integration Note for ECDS with Cisco Show and Share, Cisco Media Experience Engine 3500, and Cisco Digital Media Players

Integration Note for ECDS with Cisco Show and Share, Cisco Media Experience Engine 3500, and Cisco Digital Media Players Integration Note for ECDS with Cisco Show and Share, Cisco Media Experience Engine 3500, and Cisco Digital Media Players Revised: December 12, 2011 This document provides only the basic configuration workflows

More information

User Manual. MDWorkflow. Web Application from Midrange Dynamics

User Manual. MDWorkflow. Web Application from Midrange Dynamics User Manual MDWorkflow Web Application from Midrange Dynamics (Version 7.1) Tel. +41 (41) 710 27 77, Fax +41 (41) 710 95 87, www.midrangedynamics.com 1 / 36 MDWorkflow - Table of Contents 1 INTRODUCTION...

More information

Open XML Gateway User Guide. CORISECIO GmbH - Uhlandstr Darmstadt - Germany -

Open XML Gateway User Guide. CORISECIO GmbH - Uhlandstr Darmstadt - Germany - Open XML Gateway User Guide Conventions Typographic representation: Screen text and KEYPAD Texts appearing on the screen, key pads like e.g. system messages, menu titles, - texts, or buttons are displayed

More information

ECM-VNA Convergence Connector

ECM-VNA Convergence Connector ECM-VNA Convergence Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

Troubleshooting Single Sign-On

Troubleshooting Single Sign-On Security Trust Error Message, page 1 "Invalid Profile Credentials" Message, page 2 "Module Name Is Invalid" Message, page 2 "Invalid OpenAM Access Manager (Openam) Server URL" Message, page 2 Web Browser

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Efecte Service Management 2015 Web API

Efecte Service Management 2015 Web API Efecte Service Management 2015 Web API Updated May 5, 2015 Efecte Corp. info@efecte.com www.efecte.com 2 (17) TABLE OF CONTENTS 1 Overview... 4 2 Efecte Web API... 4 2.1 DataCardImport service... 4 2.2

More information

Finding Support Information for Platforms and Cisco IOS Software Images

Finding Support Information for Platforms and Cisco IOS Software Images First Published: June 19, 2006 Last Updated: June 19, 2006 The Cisco Networking Services () feature is a collection of services that can provide remote event-driven configuring of Cisco IOS networking

More information

Integration Client Guide

Integration Client Guide Integration Client Guide 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

VMware AirWatch Integration with F5 Guide Enabling secure connections between mobile applications and your backend resources

VMware AirWatch Integration with F5 Guide Enabling secure connections between mobile applications and your backend resources VMware AirWatch Integration with F5 Guide Enabling secure connections between mobile applications and your backend resources Workspace ONE UEM v9.6 Have documentation feedback? Submit a Documentation Feedback

More information

Mozy. Administrator Guide

Mozy. Administrator Guide Mozy Administrator Guide Preface 2017 Mozy, Inc. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished under a license

More information

Intel Small Business Extended Access. Deployment Guide

Intel Small Business Extended Access. Deployment Guide Intel Small Business Extended Access Deployment Legal Notices and Disclaimers Disclaimers INTEL CORPORATION MAKES NO WARRANTY OF ANY KIND WITH REGARD TO THIS MATERIAL, INCLUDING, BUT NOT LIMITED TO, THE

More information

VMware vcenter Server Appliance Management Programming Guide. Modified on 28 MAY 2018 vcenter Server 6.7 VMware ESXi 6.7

VMware vcenter Server Appliance Management Programming Guide. Modified on 28 MAY 2018 vcenter Server 6.7 VMware ESXi 6.7 VMware vcenter Server Appliance Management Programming Guide Modified on 28 MAY 2018 vcenter Server 6.7 VMware ESXi 6.7 You can find the most up-to-date technical documentation on the VMware website at:

More information

Introducing Cisco License Manager

Introducing Cisco License Manager CHAPTER 1 Cisco License rapidly acquires and deploys a large number of software licenses and tracks license status for an entire network. Tip If you are using Cisco License for the first time, see the

More information

Unity Connection Version 10.5 SAML SSO Configuration Example

Unity Connection Version 10.5 SAML SSO Configuration Example Unity Connection Version 10.5 SAML SSO Configuration Example Document ID: 118772 Contributed by A.M.Mahesh Babu, Cisco TAC Engineer. Jan 21, 2015 Contents Introduction Prerequisites Requirements Network

More information

FUJITSU Cloud Service S5. Introduction Guide. Ver. 1.3 FUJITSU AMERICA, INC.

FUJITSU Cloud Service S5. Introduction Guide. Ver. 1.3 FUJITSU AMERICA, INC. FUJITSU Cloud Service S5 Introduction Guide Ver. 1.3 FUJITSU AMERICA, INC. 1 FUJITSU Cloud Service S5 Introduction Guide Ver. 1.3 Date of publish: September, 2011 All Rights Reserved, Copyright FUJITSU

More information

Start Here. Accessing Cisco Show and Share. Prerequisites CHAPTER

Start Here. Accessing Cisco Show and Share. Prerequisites CHAPTER CHAPTER 1 Revised: May 31, 2011 Accessing Cisco Show and Share, page 1-1 Cisco Show and Share Quick Start, page 1-4 Sign In to Cisco Show and Share, page 1-20 Set Your Personal Preferences, page 1-22 Accessing

More information