Simple Object Access Protocol (SOAP)

Size: px
Start display at page:

Download "Simple Object Access Protocol (SOAP)"

Transcription

1 Simple Object Access Prtcl (SOAP) Languages fr web Prf. Eugeni Di Sciasci Master s Degree Curse in Cmputer Engineering - (A.Y. 2016/2017)

2 Web service architecture (1/2) A ppular interpretatin f Web services is based n IBM s Web service architecture based n three elements: Service requester: The ptential user f a service Service prvider: The entity that implements the service and ffers t carry it ut n behalf f the requester Service registry: A place where available services are listed and which allws prviders t advertise their services and requesters t query fr services The gal is just-in-time integratin f applicatins by discvering and rchestrating netwrk-available services Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 2 f 26

3 Web service architecture (2/2) The architecture has a remarkable client/server flavr It reflects nly what can be dne with SOAP (Simple Object Access Prtcl) UDDI (Universal Descriptin and Discvery Prtcl) WSDL (Web Services Descriptin Language) UDDI SOAP WSDL Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 3 f 26

4 What is SOAP? The Simple Object Access Prtcl (SOAP) was initiated by W3C in 1999 SOAP 1.0 was entirely based n HTTP SOAP 1.1 (May 2000) was mre generic since it included ther transprt prtcls. SOAP 1.2 (2007) has a number f changes in syntax SOAP was riginally cnceived as the minimal pssible infrastructure necessary t perfrm RPC thrugh the Internet use f XML as intermediate representatin between systems very simple message structure mapping t HTTP fr tunneling thrugh firewalls and using the Web infrastructure Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 4 f 26

5 SOAP specificatin SOAP specificatin cvers the fllwing fur main areas A message frmat fr ne-way cmmunicatin describing hw a message can be packed int an XML dcument A descriptin f hw (the XML dcument that makes up) a SOAP message shuld be transprted thrugh the Web (using HTTP) r (using SMTP). A set f rules that must be fllwed when prcessing a SOAP message and a simple classificatin f the entities invlved in that prcessing. It als specifies what parts f the messages shuld be read by whm and hw t react in case the cntent is nt understd A set f cnventins n hw t turn an RPC call int a SOAP message and back as well as hw t implement the RPC style f interactin (hw the client side RPC call is translated int a SOAP message, frwarded, turned int a server side RPC call, the reply cnverted int a SOAP message and returned t the client) Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 5 f 26

6 SOAP messages <Envelpe>: rt element in every SOAP message <Header>: ptinal subelement f the SOAP envelpe, and is used t pass applicatin-related infrmatin that is t be prcessed by SOAP ndes alng the message path <Bdy>: a mandatry subelement f the SOAP envelpe, which cntains infrmatin intended fr the ultimate recipient f the message; see The SOAP bdy. <Fault>: a subelement f the SOAP bdy, which is used fr reprting errrs Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 6 f 26

7 SOAP Message Prcessing SOAP assumes messages have an riginatr, ne r mre ultimate receivers, and zer r mre intermediaries The reasn is t supprt distributed message prcessing SOAP prcessing rules are directly related t the SOAP message envelpe: The Bdy is nly fr final recipients. Header sectins may be prcessed by ne r mre intermediaries as well as final recipient ndes. Originatr Recipient Intermediary Intermediary Intermediary Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 7 f 26

8 SOAP Ndes and Rles Originatrs, intermediaries, and receivers f SOAP messages are all called SOAP Ndes. Each nde is labeled with a URI Fr a particular message, the Nde can act in ne r mre SOAP Rles. Each rle is labeled with a URI Rles can be user-defined Lg message rle Check authrizatin rle When a nde receives a message, it must examine the message fr a rle definitin and prcess the headers as required. The SOAP specificatin itself des nt specify hw yu assign a rle t a nde. Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 8 f 26

9 SOAP header The immediate child elements f the header are called header blcks A header blck is an applicatin-defined XML element, and represents a lgical gruping f data which can be targeted at SOAP ndes that might be encuntered in the path f a message frm a sender t an ultimate receiver SOAP header blcks can be prcessed by SOAP intermediary ndes, and by the ultimate SOAP receiver nde. Hwever, in a real applicatin, nt every nde prcesses every header blck Each nde is typically designed t prcess particular header blcks, and each header blck is prcessed by particular ndes The SOAP header enables users t add features t a SOAP message in a decentralized manner withut prir agreement between the cmmunicating parties Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 9 f 26

10 SOAP header Althugh the header blcks are applicatin-defined, SOAP-defined attributes n the header blcks indicate hw the header blcks must be prcessed by the SOAP ndes. encdingstyle rle indicates the rules used t encde the parts f a SOAP message. SOAP defines a narrwer set f rules fr encding data than the flexible encding that XML enables specifies whether a particular nde will perate n a message. If the rle specified fr the nde matches the rle attribute f the header blck, the nde prcesses the header. If the rles d nt match, the nde des nt prcess the header blck. In SOAP 1.1, the actr attribute perfrms the same functin. Rles can be defined by the applicatin, and are designated by a URI Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 10 f 26

11 SOAP header: rle attribute The SOAP 1.2 specificatin defines three standard rles in additin t thse which are defined by the applicatin: Nne f the SOAP ndes n the message path shuld prcess the header blck directly. Header blcks with this rle can be used t carry data that is required fr prcessing f ther SOAP header blcks. All SOAP ndes n the message path are expected t examine the header blck (prvided that the header has nt been remved by a nde earlier in the message path). Only the ultimate receiver nde is expected t examine the header blck. Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 11 f 26

12 SOAP header mustunderstand This attribute is used t ensure that SOAP ndes d nt ignre header blcks which are imprtant t the verall purpse f the applicatin. 1 (SOAP 1.1) r true (SOAP 1.2): The nde must either prcess the header blck in a manner cnsistent with its specificatin, r nt at all (and thrw a fault). 0 (SOAP 1.1) r false (SOAP 1.2): The nde is nt bliged t prcess the header blck. relay (SOAP 1.2 nly) When a SOAP intermediary nde prcesses a header blck, the SOAP intermediary nde remves the header blck frm the SOAP message. By default, the SOAP intermediary nde als remves all header blcks that it ignred (because the mustunderstand attribute had a value f false). Hwever, when the relay attribute is specified with a value f true, the SOAP intermediary nde retains the unprcessed header blck in the message. Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 12 f 26

13 SOAP header example <?xml versin='1.0'?> <env:envelpe xmlns:env=" <env:header> <m:reservatin xmlns:m= " env:rle=" env:mustunderstand="true"> <m:reference>uuid:093a2da1-q r-ba5d-pqff98fe8j7d </m:reference> <m:dateandtime> t13:20: :00 </m:dateandtime> </m:reservatin> <n:passenger xmlns:n= " env:rle=" env:mustunderstand="true"> <n:name>åke Jógvan Øyvind</n:name> </n:passenger> </env:header> Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 13 f 26

14 Rles, Understanding, and Relays Rle? Yes must Understand Yes Prcess Header N N Frward Header Yes N Relay? Remve Header Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 14 f 26

15 SOAP bdy The bdy is intended fr the applicatin specific data cntained in the message A bdy entry (r a bdy blck) is syntactically equivalent t a header entry with attributes rle = ultimatereceiver and mustunderstand = 1 Unlike fr headers, SOAP des specify the cntents f sme bdy entries: mapping f RPC t a cllectin f SOAP bdy entries the Fault entry (fr reprting errrs in prcessing a SOAP message) The fault entry has fur elements (in 1.1): fault cde: indicating the class f errr (versin, mustunderstand, client, server) fault string: human readable explanatin f the fault (nt intended fr autmated prcessing) fault actr: wh riginated the fault detail: applicatin specific infrmatin abut the nature f the fault Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 15 f 26

16 SOAP Fault element (1.2) In versin 1.2, the fault element is specified in mre detail. It must cntain tw mandatry sub-elements: Cde: cntaining a value (the cde f the fault) and pssibly a subcde (fr applicatin specific infrmatin) Reasn: same as faultstring in 1.1 This string can be prvided in different languages: <env:text xml:lang="en-us">header nt understd</env:text> <env:text xml:lang="fr">en-tête nn cmpris</env:text> and may cntain any f the fllwing ptinal elements: Nde: the URI identifying the nde prducing the fault Rle: the rle played by the nde that generated the fault Detail Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 16 f 26

17 SOAP Fault structure (1/2) <env:envelpe xmlns:env=" <env:header>... </env:header> <env:bdy> <env:fault> <env:cde> (required) <env:value>env:versinmismatch env:mustunderstand Sender DataEncdingUnknwn Receiver</env:Value> (required) <env:subcde> (ptinal) <env:value>text</env:value> (required) <env:subcde> (ptinal)... </env:subcde> </env:subcde> </env:cde> Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 17 f 26

18 SOAP Fault structure (2/2) <env:reasn> (required) <env:text xml:lang="languagecde">text<env:text> (required) <env:text xml:lang="languagecde">text<env:text> (pitnal)... </env:reasn> <env:nde> (ptinal) </env:nde> <env:rle> (ptinal) </env:rle> <env:detail...> (ptinal)... (any XML structure) </env:detail> </env:fault> </env:bdy> </env:envelpe> Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 18 f 26

19 SOAP Fault: example <env:fault> <env:cde> <env:value>env:sender</env:value> <env:subcde> <env:value>rpc:badarguments</env:value> </env:subcde> </env:cde> <env:reasn> <env:text xml:lang="en-us">prcessing errr</env:text> <env:text xml:lang="fr-ca">errr</env:text> </env:reasn> <env:detail> <e:myfaultdetails xmlns:e=" <e:message>name des nt match card number</e:message> <e:errrcde>999</e:errrcde> </e:myfaultdetails> </env:detail> </env:fault> Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 19 f 26

20 SOAP and HTTP A binding f SOAP t a transprt prtcl is a descriptin f hw a SOAP message is t be sent using that transprt prtcl The typical binding fr SOAP is HTTP SOAP can use GET r POST GET: the request is nt a SOAP message but the respnse is a SOAP message POST: bth request and respnse are SOAP messages (in v1.2, v1.1 mainly cnsiders using POST) SOAP uses the same errr and status cdes as thse used in HTTP s that HTTP respnses can be directly interpreted by a SOAP mdule HTTP POST SOAP Envelpe SOAP header Transactinal cntext SOAP Bdy Name f Prcedure Input parameter 1 Input parameter 2 Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 20 f 26

21 SOAP request ver HTTP (v1.2) POST /WSShakespeare.asmx HTTP/1.1 Hst: Cntent-Type: applicatin/sap+xml; charset=utf-8; actin= ; Cntent-Length: length <sap:envelpe xmlns:sap=" sap:encdingstyle=" <sap:bdy> <m:getprice xmlns:m=" <m:item>apples</m:item> </m:getprice> </sap:bdy> </sap:envelpe> Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 21 f 26

22 SOAP request ver HTTP (v1.1) POST /WSShakespeare.asmx HTTP/1.1 Hst: Cntent-Type: text/xml; charset=utf-8 Cntent-Length: length SOAPActin: " <?xml versin="1.0" encding="utf-8"?> <env:envelpe xmlns:xsi=" xmlns:env=" <env:bdy> <GetSpeech xmlns=" <Request>string</Request> </GetSpeech> </env:bdy> </env:envelpe> Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 22 f 26

23 SOAP respnse ver HTTP HTTP/ OK Cntent-Type: text/xml; charset="utf-8" Cntent-Length: nnnn <SOAP-ENV:Envelpe xmlns:soap-env=" SOAP-ENV:encdingStyle=" <SOAP-ENV:Bdy> <m:getlasttradepricerespnse xmlns:m="sme-uri"> <Price>34.5</Price> </m:getlasttradepricerespnse> </SOAP-ENV:Bdy> </SOAP-ENV:Envelpe> ETH Zürich Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 23 f 26

24 RPC ver SOAP Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 24 f 26

25 SOAP RPC representatin SOAP RPC Presentatin is an extensin f the SOAP framewrk specificatin that defines hw RPC requests and respnses shuld be presented by SOAP The fllwing issues are invlved t carry ut a remte prcedure call: The target system which will perfrm the prcedure and return the result. The prcedure name used t identify the prcedure n the target system. Input parameters that need t be passed t the prcedure n the target system. Return value which is returned directly by the prcedure. Output parameters that cntain infrmatin affected indirectly by the prcedure. SOAP RPC Presentatin defines the fllwing rules t reslved the issues listed abve: If the nature f the prcedure is a request fr infrmatin retrieval, and the prcedure name and input parameters can be entirely represented in the target SOAP nde URI, RPC invcatin shuld be carried as a Web methd defined in the SOAP Web Methd Feature specificatin. If a RPC can nt be carried ut as a Web methd, it shuld be invked by as SOAP message with a SOAP bdy element. The bdy element shuld use SOAP encding and cntains a single "struct" nde representing the prcedure name. All input parameters shuld be represented as utbund edges riginated frm this nde. Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 25 f 26

26 Using Web methds t invke RPC Example 1 - A user needs t invke the fllwing RPC n a target system called "inventry": getquantityinstck(partnumber="123") This invcatin can be dne as a Web methd f "GET" type with a target SOAP nde URI like: Example 2 - Anther user needs t invke the fllwing RPC n a target system called "inventry": updatequantityinstck(partnumber="123", NewQuantity="200") This invcatin can still be dne as a Web methd f "GET" type with a target SOAP nde URI like: It can als be invked as a Web methd f "POST" type with a target SOAP nde URI like: and transmit input parameters: PartNumber="123", NewQuantity="200", in the HTTP request bdy. Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 26 f 26

27 Using SOAP methds t invke RPC Example 3 - A user wants t update prices f a list f part numbers in an inventry system with the fllwing RPC: updateprice(list=arrayofstructures) <env:envelpe xmlns:env=" <env:bdy env:encdingstyle=" xmlns:enc=" <rpc:updateprice enc:ndetype="struct" xmlns:rpc=" <rpc:list enc:arraysize="2"> <rpc:item> <rpc:partnumber>123</rpc:partnumber> <rpc:price>99.00</rpc:price> </rpc:item> <rpc:item> <rpc:partnumber>321</rpc:partnumber> <rpc:price>199.00</rpc:price> </rpc:item> </rpc:list> </rpc:updateprice> </env:bdy> </env:envelpe> Prf. Eugeni Di Sciasci Languages fr web: Simple Object Access Prtcl 27 f 26

Web Services SOAP. Lecture "XML in Communication Systems" Chapter 12

Web Services SOAP. Lecture XML in Communication Systems Chapter 12 Web Services SOAP Lecture "XML in Cmmunicatin Systems" Chapter 12 Prf. Dr.-Ing. Nrbert Luttenberger Research Grup fr Cmmunicatin Systems Dept. f Cmputer Science Christian-Albrechts-University in Kiel Recmmended

More information

REST; WebSocket (RFC 6455)

REST; WebSocket (RFC 6455) REST; WebScket (RFC 6455) Web Oriented Technlgies and Systems Prf. Michele Ruta Master s Degree Curse in Cmputer Engineering - (A.Y. 2016/2017) REST REST = Representatinal State Transfer. Anther architectural

More information

Single Sign-On (SSO) Release Notes Spring, 2010

Single Sign-On (SSO) Release Notes Spring, 2010 Single Sign-On (SSO) Release Ntes Spring, 2010 Cntents SSO Functinality Changes in Learning Platfrm 4.0 GUIDs SOAP FORM SSO Lgin Cnfiguratin Variable Cpyright 2010 by Desire2Learn Incrprated. Desire2Learn

More information

DICOM Correction Proposal

DICOM Correction Proposal DICOM Crrectin Prpsal STATUS Final Text Date f Last Update 2014/06/25 Persn Assigned Submitter Name James Philbin Jnathan Whitby (jwhitby@vitalimages.cm) Submissin Date 2013/10/17 Crrectin Number CP-1351

More information

Developing Java Web Services. Duration: 5 days

Developing Java Web Services. Duration: 5 days QWERTYUIOP{ Develping Java Web Services Duratin: 5 days The Develping Java Web Services training class prepares Java prgrammers t develp interperable Java Web services and using SOAP, WSDL, and XML Schema.

More information

Chapter 2. The OSI Model and TCP/IP Protocol Suite. PDF created with FinePrint pdffactory Pro trial version

Chapter 2. The OSI Model and TCP/IP Protocol Suite. PDF created with FinePrint pdffactory Pro trial version Chapter 2 The OSI Mdel and TCP/IP Prtcl Suite PDF created with FinePrint pdffactry Pr trial versin www.pdffactry.cm Outline THE OSI MODEL LAYERS IN THE OSI MODEL TCP/IP PROTOCOL SUITE ADDRESSING TCP/IP

More information

Lecture 6 -.NET Remoting

Lecture 6 -.NET Remoting Lecture 6 -.NET Remting 1. What is.net Remting?.NET Remting is a RPC technique that facilitates cmmunicatin between different applicatin dmains. It allws cmmunicatin within the same prcess, between varius

More information

WS-I Usage Scenarios for the WS-I Attachments Profile 1.0

WS-I Usage Scenarios for the WS-I Attachments Profile 1.0 WS-I Usage Scenaris fr Attachments WS-I Usage Scenaris fr the WS-I Attachments Prfile 1.0 Dcument Status: Member Review Draft Versin: 1.02 Date: 2 September, 2004 Editrs: Marc Gdner, SAP Barbara McKee,

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

Configure Data Source for Automatic Import from CMDB

Configure Data Source for Automatic Import from CMDB AvailabilityGuard TM Cnfigure Data Surce fr Autmatic Imprt frm CMDB AvailabilityGuard allws yu t cnfigure business entities (such as services, divisins, and applicatins) and assign hsts, databases, and

More information

Creating a TES Encounter/Transaction Entry Batch

Creating a TES Encounter/Transaction Entry Batch Creating a TES Encunter/Transactin Entry Batch Overview Intrductin This mdule fcuses n hw t create batches fr transactin entry in TES. Charges (transactins) are entered int the system in grups called batches.

More information

GPA: Plugin for Prerequisite Checks With Solution Manager 7.1

GPA: Plugin for Prerequisite Checks With Solution Manager 7.1 GPA: Plugin fr Prerequisite Checks With Slutin Manager 7.1 Descriptin: The plugin Prerequisite checks can be used in yur wn guided prcedures. It ffers the pssibility t select at design time amng a set

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

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

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

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

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

Mapping between DFDL 1.0 Infoset and XML Data Model

Mapping between DFDL 1.0 Infoset and XML Data Model Stephen M Hansn (IBM) Mapping between DFDL 1.0 Infset and XML Data Mdel Status f This Dcument This wrking draft dcument prvides infrmatin t the OGF cmmunity n the Data Frmat Descriptin Language (DFDL)

More information

Uploading Files with Multiple Loans

Uploading Files with Multiple Loans Uplading Files with Multiple Lans Descriptin & Purpse Reprting Methds References Per the MHA Handbk, servicers are required t prvide peridic lan level data fr activity related t the Making Hme Affrdable

More information

Privacy Policy. Information We Collect. Information You Choose to Give Us. Information We Get When You Use Our Services

Privacy Policy. Information We Collect. Information You Choose to Give Us. Information We Get When You Use Our Services Privacy Plicy Last Mdified: September 26, 2016 Pictry is a fast and fun way t share memes with yur friends and the wrld arund yu. Yu can send a Pictry game t friends and view the pictures they submit in

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

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Survey Template The ARMS Imprt Survey Template New Asbests Management Surveys and their Survey Detail reprts can be added

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

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

Procurement Contract Portal. User Guide

Procurement Contract Portal. User Guide Prcurement Cntract Prtal User Guide Cntents Intrductin...2 Access the Prtal...2 Hme Page...2 End User My Cntracts...2 Buttns, Icns, and the Actin Bar...3 Create a New Cntract Request...5 Requester Infrmatin...5

More information

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern Design Patterns By Võ Văn Hải Faculty f Infrmatin Technlgies HUI Cllectinal Patterns Sessin bjectives Intrductin Cmpsite pattern Iteratr pattern 2 1 Intrductin Cllectinal patterns primarily: Deal with

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

Lecture 1: SOA in a nutshell

Lecture 1: SOA in a nutshell Lecture 1: SOA in a nutshell TIES4560 SOA and Clud Cmputing Autumn 2017 University f Jyväskylä Khriyenk Oleksiy Clud Cmputing Clud Cmputing is a buzzwrd that means different things t different peple: anther

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

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

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

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

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

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

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

Oracle BPM 10rR3. Role Authorization resolution using groups. Version: 1.0

Oracle BPM 10rR3. Role Authorization resolution using groups. Version: 1.0 Oracle BPM 10rR3 Rle Authrizatin reslutin using grups Versin: 1.0 OBPM 10gR3 Rle Authrizatin reslutin using grups Cntents Intrductin... 3 Sme BPM & LDAP cncepts... 4 Cnfiguring OBPM t use different grup

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

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

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

Software Engineering

Software Engineering Sftware Engineering Chapter #1 Intrductin Sftware systems are abstract and intangible. Sftware engineering is an engineering discipline that is cncerned with all aspects f sftware prductin. Sftware Prducts

More information

SOAP Routing and Processing Concepts. Marlon Pierce, Bryan Carpenter, Geoffrey Fox Community Grids Lab Indiana University

SOAP Routing and Processing Concepts. Marlon Pierce, Bryan Carpenter, Geoffrey Fox Community Grids Lab Indiana University SOAP Routing and Processing Concepts Marlon Pierce, Bryan Carpenter, Geoffrey Fox Community Grids Lab Indiana University mpierce@cs.indiana.edu SOAP Processing Assumptions SOAP assumes messages have an

More information

Uploading Bills, Downloading Payments, and Automating the Process. Section 1: Uploading bills

Uploading Bills, Downloading Payments, and Automating the Process. Section 1: Uploading bills Uplading Bills, Dwnlading Payments, and Autmating the Prcess This dcument describes uplading bills t Xpress-pay, dwnlading payments. There is n requirement fr a bill t upladed prir t payment because Xpress-pay

More information

Oracle FLEXCUBE Universal Banking Development Workbench- Screen Development II

Oracle FLEXCUBE Universal Banking Development Workbench- Screen Development II Oracle FLEXCUBE Universal Banking 12.0.3 Develpment Wrkbench- Screen Develpment II August 2013 1 Cntents 1 Preface... 3 1.1 Audience... 3 1.2 Related Dcuments... 3 2 Intrductin... 4 3 Generated Files...

More information

Lab 4. Name: Checked: Objectives:

Lab 4. Name: Checked: Objectives: Lab 4 Name: Checked: Objectives: Learn hw t test cde snippets interactively. Learn abut the Java API Practice using Randm, Math, and String methds and assrted ther methds frm the Java API Part A. Use jgrasp

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

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

INVENTION DISCLOSURE

INVENTION DISCLOSURE 1. Inventin Title. Light Transprt and Data Serializatin fr TR-069 Prtcl 2. Inventin Summary. This inventin defines a light prtcl stack fr TR-069. Even thugh TR-069 is widely deplyed, its prtcl infrastructure

More information

ebxml Registry And Repository Registry Services Proposal

ebxml Registry And Repository Registry Services Proposal 1 2 3 4 5 6 ebxml Registry And Repsitry Registry Services Prpsal Wrking Draft 10/2/2000 12:35 PM This versin: RegistryServicesSpecificatin v0-8.dc 7 8 9 10 11 12 Abstract This dcument is a draft prpsal

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

Forcepoint UEBA Management of Personal Data

Forcepoint UEBA Management of Personal Data Frcepint UEBA Management f Persnal Data 2018 Frcepint LLC. All Rights Reserved Dcument Classificatin: Public FPWSCMPD-2018MAY24 Frcepint UEBA Management f Persnal Data CONTENTS Disclaimer... 2 General...

More information

Upgrade Guide. Medtech Evolution General Practice. Version 1.9 Build (March 2018)

Upgrade Guide. Medtech Evolution General Practice. Version 1.9 Build (March 2018) Upgrade Guide Medtech Evlutin General Practice Versin 1.9 Build 1.9.0.312 (March 2018) These instructins cntain imprtant infrmatin fr all Medtech Evlutin users and IT Supprt persnnel. We suggest that these

More information

Service-Oriented Architecture (SOA)

Service-Oriented Architecture (SOA) Sftware Architecture curse Service-Oriented Architecture (SOA) Sessin bjectives SOA Intrductin Web Intrductin XML Simple Object Access Prtcl WSDL Web Service Registry REST By Võ Văn Hải Faculty f Infrmatin

More information

GPA: Plugin for OS Command With Solution Manager 7.1

GPA: Plugin for OS Command With Solution Manager 7.1 GPA: Plugin fr OS Cmmand With Slutin Manager 7.1 The plugin OS Cmmand can be used in yur wn guided prcedures. It ffers the pssibility t execute pre-defined perating system cmmand n each hst part f the

More information

TPP: Date: October, 2012 Product: ShoreTel PathSolutions System version: ShoreTel 13.x

TPP: Date: October, 2012 Product: ShoreTel PathSolutions System version: ShoreTel 13.x I n n v a t i n N e t w r k A p p N t e TPP: 10320 Date: Octber, 2012 Prduct: ShreTel PathSlutins System versin: ShreTel 13.x Abstract PathSlutins sftware can find the rt-cause f vice quality prblems in

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

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 Hospitality OPERA Exchange Interface Inventory XML Specifications. October 2017

Oracle Hospitality OPERA Exchange Interface Inventory XML Specifications. October 2017 Oracle Hspitality OPERA Exchange Interface Inventry XML Specificatins Octber 2017 Cpyright 2009, 2017, Oracle and/r its affiliates. All rights reserved. This sftware and related dcumentatin are prvided

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

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

Overview. Enhancement for Policy Configuration Module

Overview. Enhancement for Policy Configuration Module Overview Digital File Plicy Management: Cnfiguratin Mdule Enhancement and Inter-applicatin Plicy Sharing Digital file plicies determine hw digital files are prcessed befre being depsited int RUcre repsitry.

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

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

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

Upgrade Guide. Medtech Evolution Specialist. Version 1.11 Build (October 2018)

Upgrade Guide. Medtech Evolution Specialist. Version 1.11 Build (October 2018) Upgrade Guide Medtech Evlutin Specialist Versin 1.11 Build 1.11.0.4 (Octber 2018) These instructins cntain imprtant infrmatin fr all Medtech Evlutin users and IT Supprt persnnel. We suggest that these

More information

Integration Framework for SAP Business One

Integration Framework for SAP Business One Integratin Framewrk fr SAP Business One DIPrxy Cnfiguratin PUBLIC Glbal Rll-ut Octber 2018, B Zha TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTALLATION... 3 3 CONFIGURATION... 5 3.1 Services in Service

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

CCNA 1 Chapter v5.1 Answers 100%

CCNA 1 Chapter v5.1 Answers 100% CCNA 1 Chapter 9 2016 v5.1 Answers 100% 1. Which tw characteristics are assciated with UDP sessins? (Chse tw.) Destinatin devices receive traffic with minimal delay. Transmitted data segments are tracked.

More information

Laboratory #13: Trigger

Laboratory #13: Trigger Schl f Infrmatin and Cmputer Technlgy Sirindhrn Internatinal Institute f Technlgy Thammasat University ITS351 Database Prgramming Labratry Labratry #13: Trigger Objective: - T learn build in trigger in

More information

Simple Identity Management Profile

Simple Identity Management Profile Simple Identity Management Prfile Dcument Number: DCIM1055 Dcument Type: Specificatin Dcument Status: Published Dcument Language: E Date: 2017-07-11 Versin: 4.0.0 Versin 4.0.0 1 This prfile is fr infrmatinal

More information

Users, groups, collections and submissions in DSpace. Contents

Users, groups, collections and submissions in DSpace. Contents Users, grups, cllectins and submissins in DSpace Cntents Key cncepts... 2 User accunts and authenticatin... 2 Authrisatin and privileges... 2 Resurce plicies... 2 User rles and grups... 3 Submissin wrkflws...

More information

SmartLink for Albridge Web Services

SmartLink for Albridge Web Services SmartLink fr Albridge Web Services Cpyright 2008, E-Z Data, Inc. All Rights Reserved. N part f this dcumentatin may be cpied, reprduced r translated in any frm withut the prir written cnsent f E-Z Data,

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

Faculty Textbook Adoption Instructions

Faculty Textbook Adoption Instructions Faculty Textbk Adptin Instructins The Bkstre has partnered with MBS Direct t prvide textbks t ur students. This partnership ffers ur students and parents mre chices while saving them mney, including ptins

More information

UML : MODELS, VIEWS, AND DIAGRAMS

UML : MODELS, VIEWS, AND DIAGRAMS UML : MODELS, VIEWS, AND DIAGRAMS Purpse and Target Grup f a Mdel In real life we ften bserve that the results f cumbersme, tedius, and expensive mdeling simply disappear in a stack f paper n smene's desk.

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

Service Oriented Architecture (SOA)

Service Oriented Architecture (SOA) Sftware Architecture curse Service Oriented Architecture (SOA) Sessin bjectives SOA Intrductin Web Intrductin XML Simple Object Access Prtcl WSDL Web Service Registry REST By Võ Văn Hải Faculty f Infrmatin

More information

Dashboard Extension for Enterprise Architect

Dashboard Extension for Enterprise Architect Dashbard Extensin fr Enterprise Architect Dashbard Extensin fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins f the free versin f the extensin... 3 Example Dashbard

More information

1 Introduction Functions... 2

1 Introduction Functions... 2 Interface Descriptin API fr IPS Analytics Applicatins n the Axis ACAP Platfrm Cntents 1 Intrductin... 2 2 Functins... 2 3 Interfaces... 2 3.1 Cnfiguratin... 3 3.1.1 Interface C.1: Web cnfiguratr (IPS add-n)...

More information

SAP Intelligent Notification 365, Service. On-boarding process for SAP Hybris Marketing Cloud / SAP Hybris Marketing customers

SAP Intelligent Notification 365,  Service. On-boarding process for SAP Hybris Marketing Cloud / SAP Hybris Marketing customers SAP Intelligent Ntificatin 365, Email Service On-barding prcess fr SAP Hybris Marketing Clud / SAP Hybris Marketing custmers TABLE OF CONTENTS 1. DOCUMENT HISTORY... 3 2. INTRODUCTION... 4 3. HIGH LEVEL

More information

Whitepaper. Migrating External Specs to AutoCAD Plant 3D. Set Up the Required Folder Structure. Migrating External Specs to AutoCAD Plant 3D

Whitepaper. Migrating External Specs to AutoCAD Plant 3D. Set Up the Required Folder Structure. Migrating External Specs to AutoCAD Plant 3D Whitepaper The wrkflw fr migrating specs frm 3 rd -party sftware packages t AutCAD Plant 3D is as fllws: Set Up the Required Flder Structure Build CSV Files Cntaining Part Infrmatin Map External Parts

More information

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins)

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins) Intrductin This reference guide is aimed at managers wh will be respnsible fr managing users within RiskMan where RiskMan is nt cnfigured t use netwrk lgins. This guide is used in cnjunctin with the respective

More information

Contactless Services Card Specification v2.2 - Amendment C

Contactless Services Card Specification v2.2 - Amendment C GlbalPlatfrm Card Cntactless Services Card Specificatin v2.2 - Amendment C Versin 1.0 Public Release February 2010 Dcument Reference: GPC_SPE_025 Recipients f this dcument are invited t submit, with their

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

cloud services access to everything over the web

cloud services access to everything over the web clud services access t everything ver the web Disclaimer: This dcument is prvided as-is. Infrmatin and views expressed in this dcument, including URL and ther Internet Web site references, may change withut

More information

Dispatch Application Programming Interface

Dispatch Application Programming Interface Intrductin Fleet Managers need t be able t dispatch drivers and their vehicles t a variety f lcatins: jbs, deliveries, service lcatins, etc. Cntig CONNECT prvides a way t track vehicle lcatins, and cmmunicate

More information

SVC-T using DM36x H.264 codec

SVC-T using DM36x H.264 codec SVC-T using DM36x H.264 cdec Applicatin nte Versin 1.1 Date: 10 th Dec 2010 Scalable vide cding n DM36x This dcument describes hw t use tempral scalability in the beta H.264 ver 2.1 cdec. It is assumed

More information

Using SPLAY Tree s for state-full packet classification

Using SPLAY Tree s for state-full packet classification Curse Prject Using SPLAY Tree s fr state-full packet classificatin 1- What is a Splay Tree? These ntes discuss the splay tree, a frm f self-adjusting search tree in which the amrtized time fr an access,

More information

Microsoft Excel Extensions for Enterprise Architect

Microsoft Excel Extensions for Enterprise Architect Excel Extensins User Guide Micrsft Excel Extensins fr Enterprise Architect Micrsft Excel Extensins fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Installatin... 4 Verifying

More information

Extended Traceability Report for Enterprise Architect

Extended Traceability Report for Enterprise Architect Extended Traceability Reprt User Guide Extended Traceability Reprt fr Enterprise Architect Extended Traceability Reprt fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins

More information

Medtech Evolution. Installation Guide

Medtech Evolution. Installation Guide Medtech Evlutin Installatin Guide Versin 10.4.2. Build 5850 August 2018 Cpyright Medtech Healthcare Pty Ltd Page 1 f 11 Table f Cntents Intrductin... 3 Installatin Pre-requisites... 4 Medtech Evlutin Server

More information

DNS (Domain Name Service)

DNS (Domain Name Service) mywbut.cm DNS (Dmain Name Service) The internet primarily uses IP addresses fr lcating ndes. Hwever, its humanly nt pssible fr us t keep track f the many imprtant ndes as numbers. Alphabetical names as

More information

HP Server Virtualization Solution Planning & Design

HP Server Virtualization Solution Planning & Design Cnsulting & Integratin Infrastructure Services HP Server Virtualizatin Slutin Planning & Design Service descriptin Hewlett-Packard Cnsulting & Integratin Infrastructure Cnsulting Packaged Services (HP

More information

Dolby Conference Phone Support Frequently Asked Questions

Dolby Conference Phone Support Frequently Asked Questions Dlby Cnference Phne Supprt Frequently Asked Questins Versin 1.0, 1 Intrductin This dcument prvides sme answers t frequently asked questins abut the Dlby Cnference Phne. Fr mre detailed infrmatin n any

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

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

UNSW Technology Policy:

UNSW Technology Policy: UNSW Technlgy Plicy: UNSW Plicy Respnsible Officer Cntact Officer Apprving Authrity UNSW Data Netwrk Cnnectin Plicy Chief Infrmatin Officer Manager Infrastructure Services Supprt UNSW IT Services Ph: x

More information

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 Prepared by: March Haber, march@il.ibm.cm Last Updated: January, 2012 IBM MetaData Wrkbench Enablement Series Table f Cntents: Table f

More information

Compliance Guardian 4. User Guide

Compliance Guardian 4. User Guide Cmpliance Guardian 4 User Guide Issued September 2015 Table f Cntents What's New in this Guide... 3 Abut Cmpliance Guardian... 4 Cmplementary Prducts... 5 Submitting Dcumentatin Feedback t AvePint... 6

More information

Anonymous User Manual

Anonymous User Manual Annymus User Manual esuppliercnnect Versin 9.4 January 15 th, 2017 Page 1/32 January 15 th, 2017 v9.4 Table f cntents: 1 Intrductin 3 2 Abut esuppliercnnect 5 2.1 Prtal Access 6 2.1 Prtal Structure 7 2.2

More information

AngularJS. Unit Testing AngularJS Directives with Karma & Jasmine

AngularJS. Unit Testing AngularJS Directives with Karma & Jasmine AngularJS Unit Testing AngularJS Directives with Karma & Jasmine Directives Directives are different frm ther cmpnents they aren t used as bjects in the JavaScript cde They are used in HTML templates f

More information