Extending VMware vcloud API with vcloud Extensibility Framework

Size: px
Start display at page:

Download "Extending VMware vcloud API with vcloud Extensibility Framework"

Transcription

1 VMware vclud Architecture Tlkit fr Service Prviders Extending VMware vclud API with vclud Extensibility Framewrk Versin 2.9 January 2018 Jhn Dwyer

2 2018 VMware, Inc. All rights reserved. This prduct is prtected by U.S. and internatinal cpyright and intellectual prperty laws. This prduct is cvered by ne r mre patents listed at VMware is a registered trademark r trademark f VMware, Inc. in the United States and/r ther jurisdictins. All ther marks and names mentined herein may be trademarks f their respective cmpanies. VMware, Inc Hillview Ave Pal Alt, CA VMware vclud Architecture Tlkit fr Service Prviders

3 Cntents Intrductin vclud Directr API Extensin Requirements... 5 Cmmand-Line API Calls Lg in t vclud Directr API using HTTPie... 6 Extensin Example Register an Extensin Handling Extensin AMQP Messages Full Ticketing Example Adding API Links Summary VMware vclud Architecture Tlkit fr Service Prviders

4 4 VMware vclud Architecture Tlkit fr Service Prviders

5 Intrductin As mre custmers embrace develpment and peratins (DevOps), fr autmating the prcess f sftware delivery and infrastructure changes, it is imprtant t prvide users with the necessary tls t interact with yur cmplete IaaS platfrm. By prviding yur services as an extensin t the VMware vclud API, yu prvide a single pint f integratin fr yur user interface (custm r third-party) as well as yur tenant custmers autmatin tls. The VMware vclud Directr Extensin Framewrk gives service prviders the pwer t extend the standard API included with vclud Directr. Service prviders can register a URL pattern that, when called, will be ruted t custm cde t execute thrugh the Advanced Message Queuing Prtcl (AMQP). Sme example services yu might cnsider implementing using vclud API calls include the fllwing: Ability t rder and manage services Public IP space Operating system supprt Ability t pen, update, and clse truble ticket requests Ability t cnfigure: Anti-virus Backups Disaster recvery 1.1 vclud Directr API Extensin Requirements The requirements fr using vclud Directr API extensins include the fllwing: A vclud Directr user accunt with system administratr privileges. vclud Directr must be cnfigured t use AMQP: Administratin > System Settings > Extensibility. After cnfiguring the AMQP settings, verify yur AMQP cnnectin. A prgramming language f yur chice with bindings fr RabbitMQ. (RabbitMQ prvides the AMQP implementatin that is used with vclud Directr.) (Optinal) Ability t make cmmand-line API calls. In the fllwing examples, HTTPie is utilized. 5 VMware vclud Architecture Tlkit fr Service Prviders

6 Cmmand-Line API Calls T simplify making API calls frm the cmmand line, HTTPie is used fr all dem examples. HTTPie is a simple client that prvides curl-like functinality. All example cde can be fund n GitHub. 2.1 Lg in t vclud Directr API using HTTPie Yu must be lgged in as a system administratr. This example uses a lcal system administratr accunt called api-user. # http --verify n --sessin=vclud-gcp-admin -a api-user@system POST 'Accept:applicatin/*+xml;versin=5.6' This example uses a self-signed certificate n a vclud Directr instance, s the verify n ptin is passed. After yu lg in, the sessin is stred in vclud-gcp-admin t reuse n future requests. The utput resulting frm executin f the example shuld lk smething like the fllwing: HTTP/ OK Cntent-Length: 1390 Cntent-Type: applicatin/vnd.vmware.vclud.sessin+xml;versin=5.6 Date: Tue, 08 Dec :49:08 GMT Date: Tue, 08 Dec :49:09 GMT Set-Ckie: vclud-tken=304715fbb28e4ad19efeb6adfe850184; Secure; Path=/ X-VMWARE-VCLOUD-REQUEST-EXECUTION-TIME: 1076 X-VMWARE-VCLOUD-REQUEST-ID: b64552a4-054a-42e4-9ae1-0ea7fabb56a4 x-vclud-authrizatin: fbb28e4ad19efeb6adfe <?xml versin="1.0" encding="utf-8"?> <ns0:sessin xmlns:ns0=" xmlns:xsi=" href=" rg="system" type="applicatin/vnd.vmware.vclud.sessin+xml" user="api-user" userid="urn:vclud:user:44fbd6f9-7a76-4bca-b b181ad09" xsi:schemalcatin=" <ns0:link href=" rel="dwn" type="applicatin/vnd.vmware.vclud.rglist+xml" /> <ns0:link href=" rel="remve" /> <ns0:link href=" rel="dwn" type="applicatin/vnd.vmware.admin.vclud+xml" /> <ns0:link href=" rel="dwn" type="applicatin/vnd.vmware.admin.vmwextensin+xml" /> <ns0:link href=" name="system" rel="dwn" type="applicatin/vnd.vmware.vclud.rg+xml" /> <ns0:link href=" rel="dwn" type="applicatin/vnd.vmware.vclud.query.querylist+xml" /> <ns0:link href=" rel="entityreslver" type="applicatin/vnd.vmware.vclud.entity+xml" /> <ns0:link href=" rel="dwn:extensibility" type="applicatin/vnd.vmware.vclud.apiextensibility+xml" /> </ns0:sessin> 6 VMware vclud Architecture Tlkit fr Service Prviders

7 T reuse the sessin, simply specify the --sessin=vclud-gcp-admin parameter n all future calls. The fllwing example lists all rganizatins in the vclud Directr instance: # http --verify n --sessin=vclud-gcp-admin --pretty clrs GET Returns: <?xml versin="1.0" encding="utf-8"?> <OrgList xmlns=" href=" type="applicatin/vnd.vmware.vclud.rglist+xml" xmlns:xsi=" xsi:schemalcatin=" <Org href=" name="system" type="applicatin/vnd.vmware.vclud.rg+xml"/> <Org href=" name="cke" type="applicatin/vnd.vmware.vclud.rg+xml"/> <Org href=" name="pepsi" type="applicatin/vnd.vmware.vclud.rg+xml"/> </OrgList> 7 VMware vclud Architecture Tlkit fr Service Prviders

8 Extensin Example This example integrates a ticketing system with vclud Directr. This can be an integratin int an pen surce prject, an existing enterprise tl, r a hmegrwn system. The gal f the integratin in this example is t allw tenants t pen generic tickets at the custmer level. This integratin is dne using custm scripts fund at Register an Extensin T create a custm extensin, yu must POST a service element. A service element describes the name, namespace, ruting key, exchange t use, and URL patterns (APIFilters) and ServiceLink elements t be used as API filters. The parameters used t create the extensin are as fllws: Name Name f the entity. Fr example: gcp-ticketing. Namespace Service namespace, which must be unique amng all registered extensin services. Service namespace names must fllw the naming cnventin used fr Java packages. This example uses the namespace lcal.gcp.ticketing. RutingKey AMQP ruting key that vclud Directr must use when ruting messages t the service. This example uses the ruting key gcp-ticketing. Exchange AMQP exchange name that vclud Directr must use when ruting messages t the service. The service must create the specified exchange n the AMQP service that vclud Directr uses. This example uses the AMQP exchange name vcdext, which is different than the ne that was cnfigured with vclud Directr. The exchange used fr extensins must be f the type Direct. APIFilters One r mre URL patterns that the vclud Directr REST service must treat as extensin requests. URL patterns can include regular expressins recgnizable by java.util.regex.pattern. Fr example: (/api/rg/.*/ticketing/*[0-9]*) This allws yu t match n: /api/rg/rg-uuid/ticketing /api/rg/rg-uuid/ticketing/ /api/rg/rg-uuid/ticketing/12345 In this case, the additin t rg is limited. If yu wanted t als allw this creatin n individual VMs, yu culd specify: (/api/rg/.*/ticketing*[0-9]*) (/api/vapp/vm-.*/ticketing*[0-9]*) The XML fr the API extensin is created in a file called ext-reg.xml ( and this will be passed t vclud t register the extensin: <?xml versin="1.0" encding="utf-8"?> <vmext:service xmlns=" xmlns:vmext=" name="gcpticketing"> 8 VMware vclud Architecture Tlkit fr Service Prviders

9 <vmext:namespace>lcal.gcp.ticketing</vmext:namespace> <vmext:enabled>true</vmext:enabled> <vmext:rutingkey>gcp-ticketing</vmext:rutingkey> <vmext:exchange>vcdext</vmext:exchange> <vmext:apifilters> <vmext:apifilter> <vmext:urlpattern>(/api/rg/.*/ticketing/*[0-9]*)</vmext:urlpattern> </vmext:apifilter> </vmext:apifilters> </vmext:service> T register, POST t /api/admin/extensin/service with: Cntent Type: applicatin/vnd.vmware.admin.service+xml 'Accept:applicatin/*+xml;versin=5.6 T d this with HTTPie, execute the fllwing cmmand: # http --verify n --sessin=vclud-gcp-admin POST 'Cntent-type: applicatin/vnd.vmware.admin.service+xml' 'Accept:applicatin/*+xml;versin=5.6' < ext-reg.xml Yu will receive the fllwing utput: <?xml versin="1.0" encding="utf-8"?> <vmext:service xmlns:vmext=" xmlns:vclud=" name="gcp-test" id="urn:vclud:externalservice:f79f562a-8d7a-44d6-9bab-82ddf40589f7" href=" type="applicatin/vnd.vmware.admin.service+xml" xmlns:xsi=" xsi:schemalcatin=" <vclud:link rel="remve" href=" 8d7a-44d6-9bab-82ddf40589f7"/> <vclud:link rel="edit" href=" 8d7a-44d6-9bab-82ddf40589f7" type="applicatin/vnd.vmware.admin.service+xml"/> <vclud:link rel="rights" href=" 8d7a-44d6-9bab-82ddf40589f7/rights" type="applicatin/vnd.vmware.admin.rights+xml"/> <vclud:link rel="dwn:servicelinks" href=" 82ddf40589f7/links" type="applicatin/vnd.vmware.vclud.query.recrds+xml"/> <vclud:link rel="bundle:uplad" href=" type="applicatin/vnd.vmware.admin.bundleupladparams+xml"/> <vclud:link rel="add" href=" 44d6-9bab-82ddf40589f7/links" type="applicatin/vnd.vmware.admin.servicelink+xml"/> <vclud:link rel="dwn:apifilters" href=" 82ddf40589f7/apifilters" type="applicatin/vnd.vmware.vclud.query.recrds+xml"/> <vclud:link rel="add" href=" 44d6-9bab-82ddf40589f7/apifilters" type="applicatin/vnd.vmware.admin.apifilter+xml"/> 9 VMware vclud Architecture Tlkit fr Service Prviders

10 <vclud:link rel="add" href=" 44d6-9bab-82ddf40589f7/apidefinitins" type="applicatin/vnd.vmware.admin.apidefinitin+xml"/> <vclud:link rel="dwn:apidefinitins" href=" 82ddf40589f7/apidefinitins" type="applicatin/vnd.vmware.vclud.query.recrds+xml"/> <vclud:link rel="add" href=" 44d6-9bab-82ddf40589f7/resurceclasses" type="applicatin/vnd.vmware.admin.resurceclass+xml"/> <vclud:link rel="dwn:resurceclasses" href=" 82ddf40589f7/resurceclasses" type="applicatin/vnd.vmware.vclud.query.recrds+xml"/> <vclud:link rel="authrizatin:check" href=" 82ddf40589f7/authrizatincheck" type="applicatin/vnd.vmware.admin.authrizatincheckparams+xml"/> <vmext:namespace>lcal.gcp.ticketing</vmext:namespace> <vmext:enabled>true</vmext:enabled> <vmext:authrizatinenabled>false</vmext:authrizatinenabled> <vmext:rutingkey>gcp-ticketing</vmext:rutingkey> <vmext:pririty>0</vmext:pririty> <vmext:exchange>vcdext</vmext:exchange> </vmext:service> T retrieve a list f all extensins yu can execute: # http --verify n --sessin=vclud-gcp-admin --pretty clrs GET T test that the extensin allws calling the ticketing methd fr an rganizatin, execute the fllwing cmmand: # http --verify n --sessin=vclud-gcp-admin --pretty clrs GET When this test cmmand is executed, the call will hang fr 10 secnds, and eventually return a 504 errr message, External service gcp-ticketing failed t respnd in the specified timeut (10 SECONDS). This verifies that the new extensin was registered successfully, hwever, nthing was cnfigured yet t handle the message that was added t the message queue. 3.2 Handling Extensin AMQP Messages When the API receives an extensin request, the vclud Directr REST service creates a message and sends it t the system AMQP service, specifying the exchange and ruting key registered by the extensin service. The extensin service retrieves the message frm a queue bund t the exchange it registered, prcesses the request, and returns a respnse t the cmmn reply exchange. T handle the AMQP messages, yu must use a language that has a client t cmmunicate with RabbitMQ. There are tutrials fr mst majr prgramming languages n the RabbitMQ site at This example uses Pythn with the Pika client. T listen fr incming messages, yu must bind t the crrect Exchange and Queue (als referred t as RutingKey). This was defined when yu registered the extensin (see Sectin 3.1, Register an Extensin). Exchange: vcdext Queue: gcp-ticketing 10 VMware vclud Architecture Tlkit fr Service Prviders

11 When new messages are received, the fllwing infrmatin is prvided: channel, methd, prperties and bdy. The prperties cntain three imprtant pieces f infrmatin that are required t respnd t the request: Headers These are the AMQP headers, nt the API headers. The key piece f infrmatin required is the replytexchange. Crrelatin_id vclud Directr sets a unique crrelatin_id in every message sent t the extensin service, and the extensin must set the same value in the crrespnding respnse. Reply_t What queue t respnd n. The bdy is made up f many parts, but, fr basic integratin, the fllwing is required: Bdy The bdy f the API request. Headers The API request headers. It is imprtant t nte the incming Accept header t respnd back with the crrect cntent type. Methd The methd used t call the API (GET, POST, PUT, DELETE). Id The unique ID assigned t the incming message. This is used t reply t the message. Fr mre infrmatin abut the bdy, see the VMware vclud API Prgramming Guide fr Service Prviders at BD00-A76E47A9C731.html Basic Example This example generically handles a request and respnds back using Pythn. The fllwing is an example f the cde used. Refer t the surce cde n GitHub t make sure yu have the mst current versin f the cde. On a server that can cnnect t the RabbitMQ instance, run the basic_receive.py prgram script ( 11 VMware vclud Architecture Tlkit fr Service Prviders

12 12 VMware vclud Architecture Tlkit fr Service Prviders

13 A call is then made against the new API ticketing endpint: # http --verify n --sessin=vclud-gcp-admin --pretty clrs GET The call and respnse is similar t the fllwing: The fllwing utput frm basic_receive.py indicates that the message has been prperly handled: 3.3 Full Ticketing Example Nw that yu have seen that the message has been successfully handled, yu can implement a full ticketing slutin. A pythn script, ticketing.py, that is meant t simulate wrking with a ticketing system, is available at T explre the API, execute pythn ticketing.py: The fllwing is a list f newly expsed functinality with examples shwing hw t make the crrespnding API extensin call: List tickets fr an rg GET: /api/rg/<org_uuid>/ticketing http --sessin=vclud-gcp-admin --pretty clrs GET --verify n Create a ticket POST: /api/rg/<org_uuid>/ticketing http --sessin=vclud-gcp-admin --pretty clrs POST --verify n < ticket_create.xml Get ticket details GET: /api/rg/<org_uuid>/ticketing/<ticket_id> 13 VMware vclud Architecture Tlkit fr Service Prviders

14 http --sessin=vclud-gcp-admin --pretty clrs GET --verify n Update a ticket PUT: /api/rg/<org_uuid>/ticketing/<ticket_id> http --sessin=vclud-gcp-admin --pretty clrs PUT --verify n < ticket_update.xml Delete a ticket DELETE: /api/rg/<org_uuid>/ticketing/<ticket_id> http --sessin=vclud-gcp-admin --pretty clrs DELETE --verify n Using these example, yu can explre hw the new API endpints are expsed and implemented. 3.4 Adding API Links While the new ticketing extensin is registered, it des nt shw up in the link list. By using the ServiceLink bject, yu can add link elements t the representatin f vclud API bjects. This can be dne by passing the ServiceLinks with the riginal service extensin registratin, r it can be added later. In this case, they are added after the extensin has been implemented. When yu view an rganizatin: # http --verify n --sessin=vclud-gcp-admin --pretty clrs GET there is n link element returned prviding the path t the newly defined service. T add the new links, yu must retrieve the UUID f the registered service: # http --sessin=vclud-gcp-admin --pretty clrs GET --verify n This prvides the list f all registered extensins. After finding the ticketing extensin, yu can get the details f the extensin yu added: # http --verify n --sessin=vclud-gcp-admin --pretty clrs GET d601a58 One f the links that is returned allws yu t add the ServiceLinks: <vclud:link rel="add" href=" type="applicatin/vnd.vmware.admin.servicelink+xml"/> POST this ServiceLink t this lcatin. T build a ServiceLink, there are fur required attributes: LinkHref The value f the href attribute f this service Link. This can be any URI, and can include the variables {baseuri} and {resurceid}. When cnstructing the href value f the link, vclud Directr replaces {baseuri} with the vclud Directr REST API base URL, and replaces {resurceid} with the UUID prtin f the id attribute value f the resurce in which the link is inserted. The value must be less than r equal t 255 characters in length. MimeType The value, specified as a MIME cntent type, f the type attribute f the link. The value must be less than r equal t 255 characters in length. Rel The value f the rel attribute f the link. This value must be less than r equal t 255 characters in length. ResurceType The bject type, specified as a MIME cntent type, f the bject in which the link appears. Must be less than r equal t 255 characters in length. 14 VMware vclud Architecture Tlkit fr Service Prviders

15 Example XML ( <?xml versin="1.0" encding="utf-8"?> <vmext:servicelink xmlns:vmext=" xmlns:vclud=" type="applicatin/vnd.vmware.admin.servicelink+xml"> <vmext:linkhref>{baseuri}rg/{resurceid}/ticketing</vmext:linkhref> <vmext:mimetype>applicatin/vnd.example.vcd.tickets+xml</vmext:mimetype> <vmext:rel>listtickets</vmext:rel> <vmext:resurcetype>applicatin/vnd.vmware.vclud.rg+xml</vmext:resurcetype > </vmext:servicelink> Add the link t the extensin: # http --verify n --sessin=vclud-gcp-admin --pretty clrs POST d601a58/links 'Cntent-type: applicatin/vnd.vmware.admin.servicelink+xml' < ext-addlink.xml After the link is added, call the rg bject t verify that it has been added: # http --verify n --sessin=vclud-gcp-admin --pretty clrs GET The Org XML that is returned nw includes the newly added ticketing link element: <Link rel="listtickets" href=" 49a8-8dab-3fdbf00a21ae/ticketing" type="applicatin/vnd.example.vcd.tickets+xml"/> 15 VMware vclud Architecture Tlkit fr Service Prviders

16 Summary Nw that yu have created an extensin, yu might be wndering hw yu cntrl access t yur new API. By default, all extensin requests must be authenticated thrugh the vclud API, but all users are implicitly granted permissin t perfrm all actins. Thrugh the use f the vclud Directr API Authrizatin Framewrk, yu can create granular ACL-based cntrl. Als cnsider adding the schema files t prvide dcumentatin abut yur new API using Create r Update an Extensin Service API Definitin. 16 VMware vclud Architecture Tlkit fr Service Prviders

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager Trubleshting Citrix- Published Resurces Cnfiguratin in VMware Identity Manager VMware Identity Manager A U G U S T 2 0 1 7 V1 Table f Cntents Overview... 1 Supprted Versins f Cmpnents... 1 Prerequisites...

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

More information

Enterprise Chat and Developer s Guide to Web Service APIs for Chat, Release 11.6(1)

Enterprise Chat and  Developer s Guide to Web Service APIs for Chat, Release 11.6(1) Enterprise Chat and Email Develper s Guide t Web Service APIs fr Chat, Release 11.6(1) Fr Unified Cntact Center Enterprise August 2017 Americas Headquarters Cisc Systems, Inc. 170 West Tasman Drive San

More information

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager Trubleshting Citrix- Published Resurces Cnfiguratin in VMware Identity Manager VMware Identity Manager SEP 2 0 1 8 V 4 Table f Cntents Overview... 1 Supprted Versins f Cmpnents... 1 Prerequisites... 1

More information

Admin Report Kit for Exchange Server

Admin Report Kit for Exchange Server Admin Reprt Kit fr Exchange Server Reprting tl fr Micrsft Exchange Server Prduct Overview Admin Reprt Kit fr Exchange Server (ARKES) is an Exchange Server Management and Reprting slutin that addresses

More information

BMC Remedyforce Integration with Remote Support

BMC Remedyforce Integration with Remote Support BMC Remedyfrce Integratin with Remte Supprt 2003-2018 BeyndTrust, Inc. All Rights Reserved. BEYONDTRUST, its lg, and JUMP are trademarks f BeyndTrust, Inc. Other trademarks are the prperty f their respective

More information

To start your custom application development, perform the steps below.

To start your custom application development, perform the steps below. Get Started T start yur custm applicatin develpment, perfrm the steps belw. 1. Sign up fr the kitewrks develper package. Clud Develper Package Develper Package 2. Sign in t kitewrks. Once yu have yur instance

More information

Introduction to Mindjet on-premise

Introduction to Mindjet on-premise Intrductin t Mindjet n-premise Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 www.mindjet.cm 2012 Mindjet. All Rights Reserved

More information

Stock Affiliate API workflow

Stock Affiliate API workflow Adbe Stck Stck Affiliate API wrkflw The purpse f this dcument is t illustrate the verall prcess and technical wrkflw fr Adbe Stck partners wh want t integrate the Adbe Stck Search API int their applicatins.

More information

BMC Remedyforce Integration with Bomgar Remote Support

BMC Remedyforce Integration with Bomgar Remote Support BMC Remedyfrce Integratin with Bmgar Remte Supprt 2017 Bmgar Crpratin. All rights reserved wrldwide. BOMGAR and the BOMGAR lg are trademarks f Bmgar Crpratin; ther trademarks shwn are the prperty f their

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform Supprt Guide Yur New Service Request Prcess: Technical Supprt Reference Guide fr Cisc Custmer Jurney Platfrm September 2018 2018 Cisc and/r its affiliates. All rights reserved. This dcument is Cisc Public

More information

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017 LiveEngage and Micrsft Dynamics Integratin Guide Dcument Versin: 1.0 September 2017 Cntents Intrductin... 3 Step 1: Sign Up... 3 CRM Widget Signing Up... 3 Step 2: Cnfiguring the CRM Widget... 4 Accessing

More information

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation CdeSlice View CdeSlice Live Dcumentatin Scripting is ne f the mst pwerful extensibility features in SSIS, allwing develpers the ability t extend the native functinality within SSIS t accmmdate their specific

More information

Enterprise Installation

Enterprise Installation Enterprise Installatin Mnnit Crpratin Versin 3.6.0.0 Cntents Prerequisites... 3 Web Server... 3 SQL Server... 3 Installatin... 4 Activatin Key... 4 Dwnlad... 4 Cnfiguratin Wizard... 4 Activatin... 4 Create

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins VMware AirWatch SDK Plugin fr Apache Crdva Instructins Add AirWatch Functinality t Enterprise Applicatains with SDK Plugins v1.2 Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using

More information

Dynamic Storage (ECS)

Dynamic Storage (ECS) User Guide Dynamic Strage (ECS) Swisscm (Schweiz) AG 1 / 10 Cntent 1 Abut Dynamic Strage... 3 2 Virtual drive, the EMC CIFS-ECS Tl... 4 3 Amazn S3 Brwer... 6 4 Strage Gateway Appliance... 9 5 Amazn S3

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory Technical Paper Installing and Cnfiguring Envirnment Manager in a Grid Envirnment with a Shared Cnfiguratin Directry Last Mdified: January 2018 Release Infrmatin Cntent Versin: January 2018. Trademarks

More information

Tips For Customising Configuration Wizards

Tips For Customising Configuration Wizards Tips Fr Custmising Cnfiguratin Wizards ver 2010-06-22 Cntents Overview... 2 Requirements... 2 Applicatins... 2 WinSCP and Putty... 2 Adding A Service T An Existing Wizard... 3 Gal... 3 Backup Original

More information

Test Pilot User Guide

Test Pilot User Guide Test Pilt User Guide Adapted frm http://www.clearlearning.cm Accessing Assessments and Surveys Test Pilt assessments and surveys are designed t be delivered t anyne using a standard web brwser and thus

More information

EView/400i Management Pack for Systems Center Operations Manager (SCOM)

EView/400i Management Pack for Systems Center Operations Manager (SCOM) EView/400i Management Pack fr Systems Center Operatins Manager (SCOM) Cncepts Guide Versin 7.0 July 2015 1 Legal Ntices Warranty EView Technlgy makes n warranty f any kind with regard t this manual, including,

More information

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018 Release Ntes Versin: - v18.13 Fr ClickSftware StreetSmart September 22, 2018 Cpyright Ntice Cpyright 2018 ClickSftware Technlgies Ltd. All rights reserved. N part f this publicatin may be cpied withut

More information

SOLA and Lifecycle Manager Integration Guide

SOLA and Lifecycle Manager Integration Guide SOLA and Lifecycle Manager Integratin Guide SOLA and Lifecycle Manager Integratin Guide Versin: 7.0 July, 2015 Cpyright Cpyright 2015 Akana, Inc. All rights reserved. Trademarks All prduct and cmpany names

More information

Infrastructure Series

Infrastructure Series Infrastructure Series TechDc WebSphere Message Brker / IBM Integratin Bus Parallel Prcessing (Aggregatin) (Message Flw Develpment) February 2015 Authr(s): - IBM Message Brker - Develpment Parallel Prcessing

More information

TIBCO Statistica Options Configuration

TIBCO Statistica Options Configuration TIBCO Statistica Optins Cnfiguratin Sftware Release 13.3 June 2017 Tw-Secnd Advantage Imprtant Infrmatin SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files.

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files. Interfacing t MATLAB Overview: Getting Started Basic Tutrial Interfacing with OCX Installatin GUI with MATLAB's GUIDE First Buttn & Image Mre ActiveX Cntrls Exting the GUI Advanced Tutrial MATLAB Cntrls

More information

Getting Started with the Web Designer Suite

Getting Started with the Web Designer Suite Getting Started with the Web Designer Suite The Web Designer Suite prvides yu with a slew f Dreamweaver extensins that will assist yu in the design phase f creating a website. The tls prvided in this suite

More information

Preparing a REST API. Rules of REST APIs, API patterns, Typical CRUD operations

Preparing a REST API. Rules of REST APIs, API patterns, Typical CRUD operations Preparing a REST API Rules f REST APIs, API patterns, Typical CRUD peratins Rules fr a REST API Recall: REST Representatinal State Transfer REST is stateless it has n idea f any current user state r histry

More information

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide Xilinx Answer 65444 Xilinx PCI Express DMA Drivers and Sftware Guide Imprtant Nte: This dwnladable PDF f an Answer Recrd is prvided t enhance its usability and readability. It is imprtant t nte that Answer

More information

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel NiceLabel LMS Installatin Guide fr Single Server Deplyment Rev-1702 NiceLabel 2017. www.nicelabel.cm 1 Cntents 1 Cntents 2 2 Architecture 3 2.1 Server Cmpnents and Rles 3 2.2 Client Cmpnents 3 3 Prerequisites

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

Launching Xacta 360 Marketplace AMI Guide June 2017

Launching Xacta 360 Marketplace AMI Guide June 2017 Launching Xacta 360 Marketplace AMI Guide June 2017 Tels Crpratin 2017. All rights reserved. U.S. patents Ns. 6,901,346; 6,980,927; 6,983,221; 6,993,448; and 7,380,270. Xacta is a registered trademark

More information

AvePoint Timeline Enterprise for Microsoft Dynamics CRM

AvePoint Timeline Enterprise for Microsoft Dynamics CRM AvePint Timeline Enterprise 1.0.2 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin B Issued Nvember 2013 Timeline Enterprise fr Micrsft Dynamics CRM Install and Cnfig 1 Table f Cntents

More information

Universal CMDB. Software Version: Backup and Recovery Guide

Universal CMDB. Software Version: Backup and Recovery Guide Universal CMDB Sftware Versin: 10.32 Backup and Recvery Guide Dcument Release Date: April 2017 Sftware Release Date: April 2017 Backup and Recvery Guide Legal Ntices Warranty The nly warranties fr Hewlett

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

Andrid prgramming curse Sessin bjectives Intrductin URL & HttpCnnectin Netwrking APIs Using URL t read data Using HttpCnnectin pst data Reading netwrk state Web Service SOAP REST By Võ Văn Hải Faculty

More information

Manual for installation and usage of the module Secure-Connect

Manual for installation and usage of the module Secure-Connect Mdule Secure-Cnnect Manual fr installatin and usage f the mdule Secure-Cnnect Page 1 / 1 5 Table f Cntents 1)Cntents f the package...3 2)Features f the mdule...4 3)Installatin f the mdule...5 Step 1: Installatin

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment Technical Paper Installing and Cnfiguring SAS Envirnment Manager in a SAS Grid Envirnment Last Mdified: Octber 2016 Release Infrmatin Cntent Versin: Octber 2016. Trademarks and Patents SAS Institute Inc.,

More information

Oracle CPQ Cloud Release 1. New Feature Summary

Oracle CPQ Cloud Release 1. New Feature Summary Oracle CPQ Clud 2017 Release 1 New Feature Summary April 2017 1 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE CPQ CLOUD... 4 MODERN SELLING EXPERIENCE... 4 Deal Negtiatin... 4 REST API Services... 4 ENTERPRISE

More information

SafeDispatch SDR Gateway for MOTOROLA TETRA

SafeDispatch SDR Gateway for MOTOROLA TETRA SafeDispatch SDR Gateway fr MOTOROLA TETRA SafeMbile ffers a wrld f wireless applicatins that help rganizatins better manage their mbile assets, fleet and persnnel. Fr mre infrmatin, see www.safembile.cm.

More information

SAS Hot Fix Analysis, Download and Deployment Tool

SAS Hot Fix Analysis, Download and Deployment Tool SAS Ht Fix Analysis, Dwnlad and Deplyment Tl SASHFADD Versin 2.2.1 Usage Guide What's New in SASHFADD 2.2.1? Table f Cntents Intrductin... 1 System Requirements... 2 Imprtant infrmatin regarding tl usage...

More information

HP Universal CMDB. Software Version: Backup and Recovery Guide

HP Universal CMDB. Software Version: Backup and Recovery Guide HP Universal CMDB Sftware Versin: 10.21 Backup and Recvery Guide Dcument Release Date: July 2015 Sftware Release Date: July 2015 Backup and Recvery Guide Legal Ntices Warranty The nly warranties fr HP

More information

Imagine for MSDNAA Student SetUp Instructions

Imagine for MSDNAA Student SetUp Instructions Imagine fr MSDNAA Student SetUp Instructins --2016-- September 2016 Genesee Cmmunity Cllege 2004. Micrsft and MSDN Academic Alliance are registered trademarks f Micrsft Crpratin. All rights reserved. ELMS

More information

Table of Contents. 1 Introduction Connecting to the API HTTP request syntax API release versions... 4

Table of Contents. 1 Introduction Connecting to the API HTTP request syntax API release versions... 4 API Guide Table f Cntents 1 Intrductin... 3 2 Cnnecting t the API... 4 2.1 HTTP request syntax... 4 2.2 API release versins... 4 3 Direct Answer API... 5 3.1 Required parameters... 5 3.2 Optinal parameters...

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide HPE AppPulse Mbile Sftware Versin: 2.1 IT Operatins Management Integratin Guide Dcument Release Date: Nvember 2015 Cntents Overview: The IT Operatins Management Integratin 3 System Requirements 3 Hw t

More information

Dell EqualLogic PS Series Arrays: Expanding Windows Basic Disk Partitions

Dell EqualLogic PS Series Arrays: Expanding Windows Basic Disk Partitions TECHNICAL REPORT Dell EqualLgic PS Series Arrays: Expanding Windws Basic Disk Partitins ABSTRACT This Technical Reprt describes hw t expand Micrsft Windws basic disk vlumes after increasing the size f

More information

User Guide. Document Version: 1.0. Solution Version:

User Guide. Document Version: 1.0. Solution Version: User Guide Dcument Versin: 1.0 Slutin Versin: 365.082017.3.1 Table f Cntents Prduct Overview... 3 Hw t Install and Activate Custmer Satisfactin Survey Slutin?... 4 Security Rles in Custmer Satisfactin

More information

Ephorus Integration Kit

Ephorus Integration Kit Ephrus Integratin Kit Authr: Rbin Hildebrand Versin: 2.0 Date: May 9, 2007 Histry Versin Authr Cmment v1.1 Remc Verhef Created. v1.2 Rbin Hildebrand Single Sign On (Remved v1.7). v1.3 Rbin Hildebrand Reprting

More information

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide Oracle Universal Recrds Management Oracle Universal Recrds Manager Adapter fr Dcumentum Installatin Guide December 2009 Universal Recrds Manager Adapter fr Dcumentum Installatin Guide, Cpyright 2009, Oracle.

More information

Single File Upload Guide

Single File Upload Guide Single File Uplad Guide August 15, 2018 Versin 9.6.134.78 Single File Uplad Guide 1 Fr the mst recent versin f this dcument, visit ur dcumentatin website. Single File Uplad Guide 2 Table f Cntents 1 Single

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Level 2 Development Training

Level 2 Development Training Level 2 Develpment Training Level 2 Develpment Training Level 2 Develpment Training Vide Capture RSS 4000 Level 2 Develpment Training Vide Capture Cntents 1 Intrductin... 3 Intrductin... 3 Available Resurces...

More information

Virtual Office

Virtual Office Virtual Office ---------------------------------------------------------------------------- ------- --------- Cpyright 2016, 8x8, Inc. All rights reserved. This dcument is prvided fr infrmatin purpses

More information

Overview of Data Furnisher Batch Processing

Overview of Data Furnisher Batch Processing Overview f Data Furnisher Batch Prcessing Nvember 2018 Page 1 f 9 Table f Cntents 1. Purpse... 3 2. Overview... 3 3. Batch Interface Implementatin Variatins... 4 4. Batch Interface Implementatin Stages...

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

MySabre API RELEASE NOTES MYSABRE API VERSION 2.0 (PART OF MYSABRE RELEASE 7.0) OCTOBER 28, 2006 PRODUCTION

MySabre API RELEASE NOTES MYSABRE API VERSION 2.0 (PART OF MYSABRE RELEASE 7.0) OCTOBER 28, 2006 PRODUCTION MySabre API RELEASE NOTES MYSABRE API VERSION 2.0 (PART OF MYSABRE RELEASE 7.0) OCTOBER 28, 2006 PRODUCTION These release ntes pertain t the Prductin release fr MySabre Release 7.0 cntaining MySabre API

More information

Contents: Module. Objectives. Lesson 1: Lesson 2: appropriately. As benefit of good. with almost any planning. it places on the.

Contents: Module. Objectives. Lesson 1: Lesson 2: appropriately. As benefit of good. with almost any planning. it places on the. 1 f 22 26/09/2016 15:58 Mdule Cnsideratins Cntents: Lessn 1: Lessn 2: Mdule Befre yu start with almst any planning. apprpriately. As benefit f gd T appreciate architecture. it places n the understanding

More information

MySabre API RELEASE NOTES MYSABRE API VERSION 2.1 (PART OF MYSABRE RELEASE 7.1) DECEMBER 02, 2006 PRODUCTION

MySabre API RELEASE NOTES MYSABRE API VERSION 2.1 (PART OF MYSABRE RELEASE 7.1) DECEMBER 02, 2006 PRODUCTION MySabre API RELEASE NOTES MYSABRE API VERSION 2.1 (PART OF MYSABRE RELEASE 7.1) DECEMBER 02, 2006 PRODUCTION These release ntes pertain t the Prductin release fr MySabre Release 7.1 cntaining MySabre API

More information

Product Documentation. New Features Guide. Version 8.7.5/XE6

Product Documentation. New Features Guide. Version 8.7.5/XE6 Prduct Dcumentatin New Features Guide Versin 8.7.5/XE6 2015 Embarcader Technlgies, Inc. Embarcader, the Embarcader Technlgies lgs, and all ther Embarcader Technlgies prduct r service names are trademarks

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

SAP Business One Hardware Requirements Guide

SAP Business One Hardware Requirements Guide Hardware Requirements Guide Dcument Versin: 1.13 2018-02-02 Release Family 9 Typgraphic Cnventins Type Style Example Descriptin Wrds r characters quted frm the screen. These include field names, screen

More information

WHITE PAPER January 2019 RASPBERRY PI 3B+ AND VMWARE PULSE 1.1. Version 0.1

WHITE PAPER January 2019 RASPBERRY PI 3B+ AND VMWARE PULSE 1.1. Version 0.1 WHITE PAPER January 2019 RASPBERRY PI 3B+ AND VMWARE PULSE 1.1 Versin 0.1 Table f Cntents Executive Summary... 1 Business Case... 1 Slutin Overview... 1 Intrductin... 2 Purpse... 2 Audience... 2 Slutin

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

A Purchaser s Guide to CondoCerts

A Purchaser s Guide to CondoCerts Lgin t CndCerts - T submit a request with CndCerts, lg n t www.cndcerts.cm. First time users will fllw the New Users link t register. Dcument r print screen the User ID and Passwrd prvided. New accunts

More information

App Center User Experience Guidelines for Apps for Me

App Center User Experience Guidelines for Apps for Me App Center User Experience Guidelines fr Apps fr Me TABLE OF CONTENTS A WORD ON ACCESSIBILITY...3 DESIGN GUIDELINES...3 Accunt Linking Prcess... 3 Cnnect... 5 Accept Terms... 6 Landing Page... 6 Verificatin...

More information

Cisco Tetration Analytics, Release , Release Notes

Cisco Tetration Analytics, Release , Release Notes Cisc Tetratin Analytics, Release 1.102.21, Release Ntes This dcument describes the features, caveats, and limitatins fr the Cisc Tetratin Analytics sftware. Additinal prduct Release ntes are smetimes updated

More information

Aras Innovator 8.1 Document #: Last Modified: 4/4/2007. Copyright 2007 Aras Corporation All Rights Reserved.

Aras Innovator 8.1 Document #: Last Modified: 4/4/2007. Copyright 2007 Aras Corporation All Rights Reserved. Aras Innvatr Service Usage Instructins Aras Innvatr 8.1 Dcument #: 8.1.09202006 Last Mdified: 4/4/2007 Aras Crpratin ARAS CORPORATION Cpyright 2007 All rights reserved Aras Crpratin Heritage Place 439

More information

OATS Registration and User Entitlement Guide

OATS Registration and User Entitlement Guide OATS Registratin and User Entitlement Guide The OATS Registratin and Entitlement Guide prvides the fllwing infrmatin: OATS Registratin The prcess and dcumentatin required fr a firm r Service Prvider t

More information

Managing User Accounts

Managing User Accounts A variety f user types are available in Lighthuse Transactin Manager (LTM) with cnfigurable permissins that allw the Accunt Administratr and administratr-type users fr the accunt t manage the abilities

More information

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM AvePint Pipeline Pr 2.0 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin E Issued April 2014 1 Table f Cntents Abut AvePint Pipeline Pr... 3 Required Permissins... 4 Overview f Installatin

More information

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents HP ExpertOne HP2-T21: Administering HP Server Slutins Industry Standard Servers Exam preparatin guide Table f Cntents In this sectin, include a table f cntents (TOC) f all headings. After yu have finished

More information

USER MANUAL. RoomWizard Administrative Console

USER MANUAL. RoomWizard Administrative Console USER MANUAL RmWizard Administrative Cnsle Cntents Welcme... 3 Administer yur RmWizards frm ne lcatin... 3 Abut This Manual... 4 Setup f the Administrative Cnsle... 4 Installatin... 4 The Cnsle Windw...

More information

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SYSTEM FUNCTIONS... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE OASIS SYSTEM... 3 SUBMITTING OASIS DATA FILES... 5 OASIS INITIAL

More information

D e v e l o p e r s G u i d e

D e v e l o p e r s G u i d e A D S S A u t h r i s e d R e m t e S i g n i n g ( A R S ) D e v e l p e r s G u i d e A S C E R T I A LTD S E P T E M B E R 2 0 1 8 D c u m e n t V e r s i n - 5. 9. 0. 1 Ascertia Limited. All rights

More information

Aras Innovator Viewer Add-Ons

Aras Innovator Viewer Add-Ons Aras Innvatr Viewer Add-Ons Aras Innvatr 9.2 Dcument #: 9.2.02232009 Last Mdified: 4/1/2010 Aras Crpratin ARAS CORPORATION Cpyright 2010 All rights reserved Aras Crpratin 300 Brickstne Square Suite 904

More information

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0 Kaltura Vide Extensin fr SharePint 2013 Deplyment Guide fr Micrsft Office 365 Versin: 1.0 Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright

More information

Maximo Reporting: Maximo-Cognos Metadata

Maximo Reporting: Maximo-Cognos Metadata Maxim Reprting: Maxim-Cgns Metadata Overview...2 Maxim Metadata...2 Reprt Object Structures...2 Maxim Metadata Mdel...4 Metadata Publishing Prcess...5 General Architecture...5 Metadata Publishing Prcess

More information

Assignment #5: Rootkit. ECE 650 Fall 2018

Assignment #5: Rootkit. ECE 650 Fall 2018 General Instructins Assignment #5: Rtkit ECE 650 Fall 2018 See curse site fr due date Updated 4/10/2018, changes nted in green 1. Yu will wrk individually n this assignment. 2. The cde fr this assignment

More information

Aloha Offshore SDLC Process

Aloha Offshore SDLC Process Alha Sftware Develpment Life Cycle Alha Offshre SDLC Prcess Alha Technlgy fllws a sftware develpment methdlgy that is derived frm Micrsft Slutins Framewrk and Ratinal Unified Prcess (RUP). Our prcess methdlgy

More information

Programming Project: Building a Web Server

Programming Project: Building a Web Server Prgramming Prject: Building a Web Server Submissin Instructin: Grup prject Submit yur cde thrugh Bb by Dec. 8, 2014 11:59 PM. Yu need t generate a simple index.html page displaying all yur grup members

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand Planning, installing, and cnfiguring IBM CMIS fr Cntent Manager OnDemand Cntents IBM CMIS fr Cntent Manager OnDemand verview... 4 Planning fr IBM CMIS fr Cntent Manager OnDemand... 5 Prerequisites fr installing

More information

Shavlik Protect. Migration Tool User s Guide

Shavlik Protect. Migration Tool User s Guide Shavlik Prtect Migratin Tl User s Guide Cpyright and Trademarks Cpyright Cpyright 2014-2015 LANDESK Sftware, Inc. All rights reserved. This prduct is prtected by cpyright and intellectual prperty laws

More information

KNX integration for Project Designer

KNX integration for Project Designer KNX integratin fr Prject Designer Intrductin With this KNX integratin t Prject Designer it is pssible t cntrl KNX devices like n/ff, dimming, blinds, scene cntrl etc. This implementatin is intended fr

More information

What's New 3. Install DocuSign for SharePoint 5. DocuSign for SharePoint Settings 11. Send Documents using DocuSign for SharePoint 23

What's New 3. Install DocuSign for SharePoint 5. DocuSign for SharePoint Settings 11. Send Documents using DocuSign for SharePoint 23 Quick Start Guide DcuSign fr SharePint On-Prem v3.1 Published: July 18, 2017 Overview DcuSign fr SharePint allws users t sign r get signatures frm any SharePint dcument library. This guide prvides infrmatin

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

This document describes new features and resolved issues for Intelligent Scene Analysis System

This document describes new features and resolved issues for Intelligent Scene Analysis System Release Ntes Intelligent Scene Analysis System Versin 14.0.0 Release Ntes Revisin 1 This dcument describes new features and reslved issues fr Intelligent Scene Analysis System 14.0.0. Yu can retrieve the

More information

Automatic imposition version 5

Automatic imposition version 5 Autmatic impsitin v.5 Page 1/9 Autmatic impsitin versin 5 Descriptin Autmatic impsitin will d the mst cmmn impsitins fr yur digital printer. It will autmatically d flders fr A3, A4, A5 r US Letter page

More information

Spectrum Enterprise SIP Trunking Service Zultys MX Phone System v9.0.4 IP PBX Configuration Guide

Spectrum Enterprise SIP Trunking Service Zultys MX Phone System v9.0.4 IP PBX Configuration Guide Spectrum Enterprise SIP Trunking Service Zultys MX Phne System v9.0.4 IP PBX Cnfiguratin Guide Abut Spectrum Enterprise: Spectrum Enterprise is a divisin f Charter Cmmunicatins fllwing a merger with Time

More information

Cookbook Qermid Defibrillator web service Version This document is provided to you free of charge by the. ehealth platform

Cookbook Qermid Defibrillator web service Version This document is provided to you free of charge by the. ehealth platform Ckbk Qermid Defibrillatr web service Versin 1.01 This dcument is prvided t yu free f charge by the ehealth platfrm Willebrekkaai 38 38, Quai de Willebrek 1000 BRUSSELS All are free t circulate this dcument

More information

VMware EVO:RAIL Customer Release Notes

VMware EVO:RAIL Customer Release Notes VMware EVO:RAIL Custmer Release Ntes EVO:RAIL Release 1.2.0 Dcument Revisin: 1.2.0-2 (May 27, 2015) Cpyright 1998-2015 VMware, Inc. All rights reserved. Cpyright, trademark, and patent infrmatin: http://pubs.vmware.cm/cpyright-trademark.html.

More information

Demand Forecasting. For. Microsoft Dynamics 365 for Operations. Technical Guide. Release 7.1. December 2017

Demand Forecasting. For. Microsoft Dynamics 365 for Operations. Technical Guide. Release 7.1. December 2017 Demand Frecasting Fr Micrsft Dynamics 365 fr Operatins Technical Guide Release 7.1 December 2017 2017 Farsight Slutins Limited All Rights Reserved. Prtins cpyright Business Frecast Systems, Inc. This dcument

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

Certified Reference Design for VMware Cloud Providers

Certified Reference Design for VMware Cloud Providers VMware vclud Architecture Tlkit fr Service Prviders Certified Reference Design fr VMware Clud Prviders Versin 1.1 December 2017 2017 VMware, Inc. All rights reserved. This prduct is prtected by U.S. and

More information

White Paper. Contact Details

White Paper. Contact Details White Paper Cntact Details Pan Cyber Infrmatin Technlgy PO Bx 34222 Dubai UAE Phne : 97143377033 Fax : 97143377266 Email : inf@pancyber.cm URL : www.pancyber.cm TABLE OF CONTENTS OVERVIEW...3 SYSTEM ARCHITECTURE...4

More information

Aras Innovator 11. Package Import Export Utilities

Aras Innovator 11. Package Import Export Utilities Aras Innvatr 11 Package Imprt Exprt Utilities Dcument #: 11.0.02015040601 Last Mdified: 1/4/2018 Aras Innvatr 11 Package Imprt Exprt Utilities Cpyright Infrmatin Cpyright 2018 Aras Crpratin. All Rights

More information

Refreshing Axiom TEST with a Current Copy of Production Axiom EPM June 20, 2014

Refreshing Axiom TEST with a Current Copy of Production Axiom EPM June 20, 2014 Refreshing Axim TEST with a Current Cpy f Prductin Axim EPM June 20, 2014 Refreshing Axim TEST If yu maintain an Axim TEST envirnment yu will want t refresh it with a current cpy f yur PROD database when

More information