Market Data Platform Real Time. REAL TIME DATA Corporate Bond Market

Size: px
Start display at page:

Download "Market Data Platform Real Time. REAL TIME DATA Corporate Bond Market"

Transcription

1 TECHNICAL DOCUMENT Market Data Platfrm Real Time REAL TIME DATA Crprate Bnd Market (STANDARD PRODUCT) Versin OCT 2015 DOTEX INTERNATIONAL LIMITED EXCHANGE PLAZA, PLOT NO. C/1, G BLOCK, BANDRA-KURLA COMPLEX, BANDRA (E), MUMBAI INDIA. Page 1 f 16

2 COPYRIGHT NOTICE All rights reserved. N part f this dcument may be reprduced r transmitted in any frm and by any means withut the prir permissin f DtEx Internatinal Ltd. Page 2 f 16

3 Revisin Histry Name Descriptin Date Versin 1.0 Final Specificatin Issued August 28, 2015 Versin 1.1 Trade structure revised Octber 12, 2015 Page 3 f 16

4 Cntents 1. Intrductin Cnnectin Details Structural diagram Online Requirements Platfrm ntes Prduct Overview Sessin Initializatin Lgin Request (Sent by client) Lgin Respnse (Sent by server) Heartbeat Message (Sent by server) End f Feed Message (Sent by server) Online Trade Infrmatin Steps fr decmpressing the data packets LZO Algrithm Details LZO Algrithm Details Decmpressin steps Checksum Calculatin Algrithm Cntact Infrmatin Page 4 f 16

5 CORPORATE BOND MARKET REAL TIME DATA (STANDARD PRODUCT) 1. Intrductin DtEx Internatinal Ltd. disseminates NSEIL s Real Time Bradcast data t varius infrmatin agencies. It prvides the 3 different types f data t Inf Vendrs, i.e. Real Time Data, Snapsht Data and End f Day Data. The Real Time Data is a packet bradcast available in TCP/IP packet frmat, whereas the Snapsht Data and End f day data are available in the frm f files. Certain prducts based n the Real Time Data are als made available thrugh files. The infrmatin agencies cnnect t the MDP-RT Server thrugh Leased Lines. These leased lines are terminated n MDP-RT Ruter and their data specific pneumnic calls are frwarded t MDP-RT server. The MDP-RT server accepts these pneumnic calls and creates a scket cnnectin. The TCP/IP data flws t the infrmatin agencies thrugh these scket cnnectins. 2. Cnnectin Details The Inf Vendrs cnnect t Real Time server ver Leased Lines using the prprietary prtcl specified in this dcument. In NSE premises tw Real Time Prductin Servers perate in an active-active cnfiguratin. Each server can be accessed using their IP addresses as shwn in the Structural Diagram. In case a server becmes inaccessible thrugh bth its IP addresses, the Inf Vendr sftware requires t fail-ver t the ther server. 2.1 Structural diagram NSE Trading System MTNL / Other Service Prviders Netwrk Leased Lines TCP/IP Feed Inf Vendrs IP Netwrk Channelized E1 Frm tw MTNL exchanges Read (UDP) TCP/IP Ruter Write (TCP/IP) MDP-RT Server 2 MDP-RT Server 1 Page 5 f 16

6 2.2 Online Requirements a) A Ruter / Switch r a card with TCP/IP capabilities t cnnect t 2 Mbps transmissin lines fr receiving NSEIL s Real time infrmatin. b) The Infrmatin agency shuld develp applicatins that initiate TCP/IP calls thrugh 2 Mbps Leased Line. c) Infrmatin agency can cnnect t the MDP-RT servers thrugh the internet als. Fr IP validatin at applicatin level, infrmatin agencies has t prvide the public static IP frm which they will cnnect t MDP-RT servers. Cnnectivity thrugh internet is available fr sme prducts nly. 2.3 Platfrm ntes 1. The service can be simultaneusly accessed thrugh IP addresses n each server. This is t enable Inf Vendrs t access the servers in case f failure. 2. There may be slight differences between the data disseminated by the tw servers because f differences in ruting f data, etc. 3. The feed cnsist f series f sequenced and un-sequenced variable length cmpressed messages. 4. The cmpressin algrithm used ver here is LZO Cmpressin. 5. Fllwing are sizes f Data Types referred thrughut this dcument: Data Type Size In Bytes CHAR 1 INT 4 LONG 4 DOUBLE 8 6. Byte rder (Endian-ness): All values are Little Endian. 7. Byte alignment (Structure Packing): All structures are aligned t 1 byte bundary. 3. Prduct Overview This dcument explains abut the NSE CBRICS Feed prduct. Thrugh this prduct, infrmatin NSE s CBRICS (Crprate Bnd Reprting Platfrm - infrmatin is disseminated n real time basis. 4. Sessin Initializatin The Feed is built n TCP/IP scket cnnectin. This feed cnsists f sequenced and un-sequenced messages. Un-sequenced messages prvides the lgin and cnnectin related messages such as lgin and heartbeats messages. Un-sequenced messages are nt part f the data. The sequenced data cntains the actual market data and are reliable and recverable. A sessin begins with client establishing a TCP cnnectin and sending the lgin request packet. Once the lgin request received the server authenticate it and send the lgin respnse. If the lgin is successful Page 6 f 16

7 server will begin t send the sequenced data, r reject the lgin and terminate the cnnectin. Data packet cnsist f sequence number as ne field. The first sequenced message f the day will send the sequence number as 1 and after that it will be incremented by 1 fr each sequenced message. 5. Packet Frmat The data is sent ut ver the TCP/IP stream in batches. Each batch received n the TCP stream is rganized as fllws: 1. Cmpressin Header: Als called as Cmpressin Header, this sectin f the packet describes whether the data packet is cmpressed, hw many messages it carries, etc. 2. Data Paylad: This cntains the actual data messages r recrds. The frmat is diagrammatically represented as fllws: Cmpressed Header 1. Cmpressed/ Uncmpressed = 0 then cmpressed/ 1 uncmpressed 2. Number f packets = Number f recrds in cmpressed data 3. Data Size = Cmpressed data size As the data packets are sent in cmpressed frmat there is a need t decmpress them. The cmpressin algrithm used is LZO. Page 7 f 16

8 All the packets received frm server cnsist f Cmpressin Header. Cmpressin Header indicates whether the data is cmpressed r nt. It als specifies the number f packets in the batch and the size f data paylad. In case the data is cmpressed, the client is required t decmpress the data paylad using LZO decmpressin algrithm. Server sends all the packets in fllwing frmat: typedef struct CHAR ccmpornt; SHORT ndatasize; SHORT inofpackets; }ST_COMP_BATCH_HEADER typedef struct SHORT icde; SHORT ilen; LONG lseqn; }ST_INFO_HEADER; typedef struct.. }ST_DATA_INFO; typedef struct SHORT ichecksum; CHAR ceot; }ST_INFO_TRAILER; typedef struct ST_INFO_HEADER stinfhdr; ST_DATA_INFO stdatainf; ST_INFO_TRAILER stinftrailer;. }ST_DATA_PACKET All the packets received frm server cnsist f cmpress batch header. Cmpress batch header gives the infrmatin abut the data packet cmpressed r nt, number f packets in the fllwing data packet and the ttal size f data packet. Client needs t decmpress the data packet using LZO decmpressin algrithm. After decmpressin each data packet cnsists f ST_INFO_HEADER, which has the icde field t identify the type f the packet. Using icde field, data inf packet is mapped t the respective data packet. Page 8 f 16

9 6. Sessin Messages Sessin messages are nt cnsidered as market data messages. These messages prvide the cnnectin and lgin related messages such as lgin, and heartbeat messages. 6.1 Lgin Request (Sent by client) Lgin request packet is sent by the client immediately after cnnecting t the server. This packet desn t cntain the cmpress batch header. If the client wants t change his default passwrd then he needs t send New Passwrd and Cnfirm Passwrd in the request therwise it shuld be kept blank. Passwrd is case sensitive. Field Name Data Type Value Remark INFO HEADER Cde SHORT CQ Length SHORT Numeric Size f (INFO HEADER + INFO DATA + INFO TRAILER) Sequence LONG Numeric 0 (Zer) Number INFO DATA User Id CHAR[10] Alphanumeric Exchange prvided user id (Null terminated) Passwrd CHAR[8] Alphanumeric Passwrd (Null terminated) New Passwrd CHAR[8] Alphanumeric New passwrd (Null terminated) Cnfirm Passwrd INFO TRAILER CHAR[8] Alphanumeric Cnfirm passwrd (Null terminated) Check Sum SHORT Numeric Refer Sectin n Checksum Calculatin Algrithm End Of Trailer CHAR \r Carriage Return 6.2 Lgin Respnse (Sent by server) Lgin respnse packet will be sent by server after receiving the lgin request packet. This packet des cntain the cmpress batch header. This packet cntains the errr cde frm which the client can identify the status f the lgin. Field Name Data Type Value Remark INFO HEADER Cde SHORT CR Page 9 f 16

10 Length SHORT Numeric Size f (INFO HEADER + INFO DATA + INFO TRAILER) Sequence Number LONG Numeric 0 (Zer) INFO DATA Errr Cde LONG Successful Lgin Passwrd Update Successfully Wrng UserId- Passwrd Cmbinatin Passwrd is nt valid in passwrd change request Lgin request is nt crrect. Errr cde ther than abve - Errr in receiving lgn respnse Errr Message CHAR[50] Descriptin abut the errr cde INFO TRAILER Check Sum SHORT Numeric Refer Sectin n Checksum Calculatin Algrithm End Of Trailer CHAR \r Carriage Return 6.3 Heartbeat Message (Sent by server) Heartbeat message will be sent if data is nt available. Field Name Data Type Value Remark INFO HEADER Cde SHORT CH Length SHORT Numeric Size f (INFO HEADER + INFO DATA + INFO TRAILER) Sequence Number INFO DATA Nt assciated with any data LONG Numeric 0 (Zer) INFO TRAILER Check Sum SHORT Numeric 0 (Zer) End Of Trailer CHAR \r Carriage Return Page 10 f 16

11 6.4 End f Feed Message (Sent by server) End f Feed message will be sent t indicate feed terminatin. Field Name Data Type Value Remark INFO HEADER Cde SHORT CE Length SHORT Numeric Size f (INFO HEADER + INFO DATA + INFO TRAILER) Sequence Number INFO DATA Nt assciated with any data INFO TRAILER LONG Numeric 0 (Zer) Check Sum SHORT Numeric 0 (Zer) End Of Trailer CHAR \r Carriage Return Page 11 f 16

12 7. Sequenced Data Messages (Sent by server) Sequenced data messages will be sent by server and will cntain the actual market data. These messages have a sequence number assigned fr each data message 7.1 Online Trade Infrmatin NSE-CBRICS Trade infrmatin is sent thrugh this message. Field Name Data Type Value Remark INFO HEADER Cde SHORT CX Length SHORT Numeric Size f (INFO HEADER + INFO DATA + INFO TRAILER) Sequence Number LONG Numeric Applicatin sequence number INFO DATA Time Stamp CHAR[11] Character N f secnds frm :00:00 (DD-MM-YYYY HH:MM:SS) Message Cde CHAR[1] Character L OTC listed Bnds U OTC unlisted Bnds ISIN CHAR[12] Character ISIN Cde f the Bnd Descriptr CHAR[128] Character Descriptr f the Bnd Weighted Average Price (Rupees) Weighted Average Yield (YTM %) CHAR[24] Character Weighted Average Price in Rupees CHAR[24] Character Weighted Average Yield (YTM) - Percent N. f Trades CHAR[24] Character N. f Trades Ttal Trade Value (Rupees in Lacs) Last Trade Price (Rupees) Last Trade Yield (YTM, Annualized, %) INFO TRAILER CHAR[24] Character Ttal Trade Value in Rupees in Lacs CHAR[24] Character Last Trade Price in Rupees CHAR[24] Character Last Trade Yield (YTM, Annualized) - Percent Check Sum SHORT Numeric Refer Sectin n Checksum Calculatin Algrithm End Of Trailer CHAR \r Carriage Return Page 12 f 16

13 8. Steps fr decmpressing the data packets 8.1 LZO Algrithm Details LZO is a data cmpressin library which is suitable fr data de- /cmpressin in real-time. This means it favrs speed ver cmpressin rati. LZO is written in ANSI C. Bth the surce cde and the cmpressed data frmat are designed t be prtable acrss platfrms. LZO implements a number f algrithms with the fllwing feature Decmpressin is simple and *very* fast. Requires n memry fr decmpressin. Requires 64 KB f memry fr cmpressin. Allws yu t dial up extra cmpressin at a speed cst in the cmpressr. The speed f the decmpressin is nt reduced. Includes cmpressin levels fr generating pre-cmpressed data which achieve a quite cmpetitive cmpressin rati. There is als a cmpressin level which needs nly 8 KB fr Cmpressin. Algrithm is thread safe. Algrithm is lssless. LZO supprts verlapping cmpressin and in-place decmpressin. 8.2 LZO Algrithm Details Include files, surce files (src) prvided by LZO LZO.lib LZO library versin used is Decmpressin steps Receive the packet in the temprary buffer i.e. array f characters. The first field is cmpressed r nt cmpresses? The secnd field is the number f packet in the fllwing data packet. The third field is data packet length. Use the fllwing functin f LZO t Decmpress. r = lz1z_decmpress ((lz_byte*)cinputbuf, iplength, (lz_byte*)coutputbuf, (lz_uint*)&plength, NULL); lz1z_decmpress: Functin which decmpresses the data packet received cinputbuf: Input buffer in which cmpressed data is received iplength: The length f the packet which applicatin has received using Receive (). coutputbuf: The uncmpressed utput data which is result f decmpressin. Page 13 f 16

14 plength: Length f uncmpressed data After decmpressin data will be available in Output Buffer. Each utput data packet cntains the INFO HEADER, after mapping the utput decmpressed buffer t INFO HEADER find ut the data packet and the accrding t it map the utput buffer t respective data packet. Algrithm: ST_INFO_HEADER *pstinfheader = NULL; fr (i=0; i < inofpackets; i++) // inofpackets received in // Cmpressed data header pstinfheader = (ST_INFO_HEADER*) coutputbuf; switch (pstinfheader->icde) case CX: //Indices Infrmatin ST_INDEX_DATA* stindexdata = (ST_INDEX_DATA*)cOutputBuf;.. coutputbuf = coutputbuf + sizef(st_index_data); break; } } } Page 14 f 16

15 9. Checksum Calculatin Algrithm The Checksum rutine fllwed fr Inf Vendr Feed is as fllws: // Fllwing are the defines fr checksum calculatin #define DC1 17 #define DC3 19 #define CR 13 #define LF 10 #define POLY 0x1021 // End f defines unsigned check_sum (cdata, ilength) char *cdata ; int ilength; unsigned uaccum = 0; unsigned udata; unsigned char ucchk[2]; int i,j; fr (i=0;i<ilength;i++) udata = *(cdata+i); udata <<= 8; fr(j=8; j>0 ;j--) if((udata^uaccum)&0x8000) uaccum=(uaccum<<1)^poly; /* SHIFT AND SUBTRACT POLY */ else uaccum<<=1; udata<<=1; } } ucchk[0] = uaccum>>8; if (ucchk[0] == DC1 ucchk[0] == DC3 ucchk[0] == CR ucchk[0] == LF ) ucchk[0] -= 1; ucchk[1] = uaccum&0xff; if (ucchk[1] == DC1 ucchk[1] == DC3 ucchk[1] == CR ucchk[1] == LF ) ucchk[1] -= 1; uaccum = ucchk[1]; uaccum = (uaccum<<8) + ucchk[0]; } return(uaccum); Page 15 f 16

16 10. Cntact Infrmatin Name Cntact Number DOTEX Business Technical Supprt Page 16 f 16

NSE - MARKET FEED (FO LEVEL - 1)

NSE - MARKET FEED (FO LEVEL - 1) NSE - MARKET FEED (FO LEVEL - 1) Version: 1.1 Date: April 25, 2013 DOTEX INTERNATIONAL LIMITED EXCHANGE PLAZA, PLOT NO. C/1, G BLOCK, BANDRA-KURLA COMPLEX, BANDRA (E), MUMBAI 400 051. INDIA. 2009 National

More information

NSE INDEX FEED. Version: 1.8 Date: March 08, 2016

NSE INDEX FEED. Version: 1.8 Date: March 08, 2016 NSE INDEX FEED Version: 1.8 Date: March 08, 2016 DOTEX INTERNATIONAL LIMITED EXCHANGE PLAZA, PLOT NO. C/1, G BLOCK, BANDRA-KURLA COMPLEX, BANDRA, MUMBAI 400 051. INDIA. 2009 National Stock Exchange India

More information

MARKET FEED CURRENCY DERIVATIVES (LEVEL - 1)

MARKET FEED CURRENCY DERIVATIVES (LEVEL - 1) MARKET FEED CURRENCY DERIVATIVES (LEVEL - 1) DATE: 22 FEBRUARY, 2018 NSE DATA & ANALYTICS LIMITED EXCHANGE PLAZA, PLOT NO. C/1, G BLOCK, BANDRA-KURLA COMPLEX, BANDRA (E), MUMBAI 400 051. INDIA. COPYRIGHT

More information

TECHNICAL DOCUMENT REAL TIME DATA SECURITIES LENDING AND BORROWING (SLB) MARKET (LEVEL 1)

TECHNICAL DOCUMENT REAL TIME DATA SECURITIES LENDING AND BORROWING (SLB) MARKET (LEVEL 1) TECHNICAL DOCUMENT REAL TIME DATA SECURITIES LENDING AND BORROWING (SLB) MARKET (LEVEL 1) 19 MAY 2010 DOTEX INTERNATIONAL LIMITED EXCHANGE PLAZA, PLOT NO. C/1, G BLOCK, BANDRA-KURLA COMPLEX, BANDRA (E),

More information

TECHNICAL DOCUMENT REAL TIME DATA CAPITAL MARKET (LEVEL 1)

TECHNICAL DOCUMENT REAL TIME DATA CAPITAL MARKET (LEVEL 1) TECHNICAL DOCUMENT REAL TIME DATA CAPITAL MARKET (LEVEL 1) 02 JULY 2010 DOTEX INTERNATIONAL LIMITED EXCHANGE PLAZA, PLOT NO. C/1, G BLOCK, BANDRA-KURLA COMPLEX, BANDRA (E), MUMBAI 400 051. INDIA. -- 1

More information

CCNA 1 Chapter v5.1 Answers 100%

CCNA 1 Chapter v5.1 Answers 100% CCNA 1 Chapter 6 2016 v5.1 Answers 100% 1. Which characteristic f the netwrk layer in the OSI mdel allws carrying packets fr multiple types f cmmunicatins amng many hsts? the de-encapsulatin f headers

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

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

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

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

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

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

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

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

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

I. Introduction: About Firmware Files, Naming, Versions, and Formats

I. Introduction: About Firmware Files, Naming, Versions, and Formats I. Intrductin: Abut Firmware Files, Naming, Versins, and Frmats The UT-4500-A Series Upcnverters and DT-4500-A Series Dwncnverters stre their firmware in flash memry, which allws the system t uplad firmware

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

User Guide. Avigilon Control Center Mobile Version 2.2 for Android

User Guide. Avigilon Control Center Mobile Version 2.2 for Android User Guide Avigiln Cntrl Center Mbile Versin 2.2 fr Andrid 2011-2015, Avigiln Crpratin. All rights reserved. Unless expressly granted in writing, n license is granted with respect t any cpyright, industrial

More information

MediaTek LinkIt Development Platform for RTOS Memory Layout Developer's Guide

MediaTek LinkIt Development Platform for RTOS Memory Layout Developer's Guide MediaTek LinkIt Develpment Platfrm fr RTOS Memry Layut Develper's Guide Versin: 1.1 Release date: 31 March 2016 2015-2016 MediaTek Inc. MediaTek cannt grant yu permissin fr any material that is wned by

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

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

Louisiana 2D Bar Code General Information

Louisiana 2D Bar Code General Information 2006 Luisiana 2D Bar Cde General Infrmatin The Luisiana Department f Revenue is utilizing tw-dimensinal barcde technlgy fr the resident (IT-540) and nnresident (IT-540B) Individual Incme Tax Frms. We are

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

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

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers Page 1 f 18 HW4 Sftware versin 3 Device Manager and Data Lgging LOG-RC Series Data Lggers 2011; Page 2 f 18 Table f cntents 1 ORGANIZATION OF THE HW4 MANUALS... 3 2 OVERVIEW... 4 3 INITIAL SETUP... 4 3.1

More information

SAS Viya 3.2 Administration: Mobile Devices

SAS Viya 3.2 Administration: Mobile Devices SAS Viya 3.2 Administratin: Mbile Devices Mbile Devices: Overview As an administratr, yu can manage a device s access t SAS Mbile BI, either by exclusin r inclusin. If yu manage by exclusin, all devices

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

CCNA 1 v5.1 Practice Final Exam Answers %

CCNA 1 v5.1 Practice Final Exam Answers % CCNA 1 v5.1 Practice Final Exam Answers 2016 100% 1. Which term refers t a netwrk that prvides secure access t the crprate ffices by suppliers, custmers and cllabratrs? Internet intranet extranet extendednet

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

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

Reporting Requirements Specification

Reporting Requirements Specification Cmmunity Mental Health Cmmn Assessment Prject OCAN 2.0 - ing Requirements Specificatin May 4, 2010 Versin 2.0.2 SECURITY NOTICE This material and the infrmatin cntained herein are prprietary t Cmmunity

More information

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide Secure File Transfer Prtcl (SFTP) Interface fr Data Intake User Guide Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 SFTP Access t FINRA... 2 SFTP

More information

Max 8/16 and T1/E1 Gateway, Version FAQs

Max 8/16 and T1/E1 Gateway, Version FAQs Frequently Asked Questins Max 8/16 and T1/E1 Gateway, Versin 1.5.10 FAQs The FAQs have been categrized int the fllwing tpics: Calling Calling Cmpatibility Cnfiguratin Faxing Functinality Glssary Q. When

More information

Re-Flashing Your CDM-760 Advanced High-Speed Trunking Modem

Re-Flashing Your CDM-760 Advanced High-Speed Trunking Modem Re-Flashing Yur CDM-760 Advanced High-Speed Trunking Mdem I. Intrductin: Firmware Files, Naming, Versins, and Frmats Make sure t perate the CDM-760 with its latest available firmware. Befre attempting

More information

SEB Test Bench User Guide for validating SEB ISO and Swedish format MIGs. Version 1.4. Payment and Direct Debit initiations

SEB Test Bench User Guide for validating SEB ISO and Swedish format MIGs. Version 1.4. Payment and Direct Debit initiations SEB Test Bench User Guide fr validating SEB ISO 20022 and Swedish frmat MIGs Versin 1.4 Payment and Direct Debit initiatins Octber, 2016 SEB Test Bench User Guide / Versin 1.4 Cntents Page N. 1. Intrductin

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

Maintenance Release Notes Release Version: 9.5.5

Maintenance Release Notes Release Version: 9.5.5 Maintenance Release Ntes Release Versin: 9.5.5 Platfrm: 9.5 MR201510 Cntents Updates Included in this Release... 1 Rules Cnsle:... 1 New Feature: Avaya Cumulative Metrics... 1 Technical Gd Health:... 3

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

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

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

Australian Statistics API Specification

Australian Statistics API Specification Australian Statistics API Specificatin Versin: 1.2 Date Mdified: 23 March 2017 Page 1 The cntext... 2 Functins f the API... 2 2.1 Retail Trade API... 2 Input Parameters fr API... 3 Output Specificatin

More information

iallworx User s Guide

iallworx User s Guide Versin 1.0 September 12, 2010 Allwrx Crp. 300 Main Street East Rchester, NY 14445 www.allwrx.cm Supprt@allwrx.cm 1.866.Allwrx 585.421.3850 Fax: 585.421.3853 2011 Allwrx Crp, a whlly wned subsidiary f PAETEC

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

Summary. Server environment: Subversion 1.4.6

Summary. Server environment: Subversion 1.4.6 Surce Management Tl Server Envirnment Operatin Summary In the e- gvernment standard framewrk, Subversin, an pen surce, is used as the surce management tl fr develpment envirnment. Subversin (SVN, versin

More information

SmartPass User Guide Page 1 of 50

SmartPass User Guide Page 1 of 50 SmartPass User Guide Table f Cntents Table f Cntents... 2 1. Intrductin... 3 2. Register t SmartPass... 4 2.1 Citizen/Resident registratin... 4 2.1.1 Prerequisites fr Citizen/Resident registratin... 4

More information

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015 Functinal Descriptin and Specificatins Versin: 1.1 March 20, 2015 SNMP Agent Simple Netwrk Management Prtcl Optin S fr IE and PM Mdules Supplement t Functinal Descriptin and Specificatins f RUB Ethernet

More information

Due Date: Lab report is due on Mar 6 (PRA 01) or Mar 7 (PRA 02)

Due Date: Lab report is due on Mar 6 (PRA 01) or Mar 7 (PRA 02) Lab 3 Packet Scheduling Due Date: Lab reprt is due n Mar 6 (PRA 01) r Mar 7 (PRA 02) Teams: This lab may be cmpleted in teams f 2 students (Teams f three r mre are nt permitted. All members receive the

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

Transmission Control Protocol Introduction

Transmission Control Protocol Introduction Transmissin Cntrl Prtcl Intrductin TCP is ne f the mst imprtant prtcls f Internet Prtcls suite. It is mst widely used prtcl fr data transmissin in cmmunicatin netwrk such as Internet. Features TCP is reliable

More information

I. Introduction: About Firmware Files, Naming, Versions, and Formats

I. Introduction: About Firmware Files, Naming, Versions, and Formats Updating Yur CTOG 250 Cmtech Traffic Optimizatin Gateway Firmware I. Intrductin: Abut Firmware Files, Naming, Versins, and Frmats The CTOG 250 Cmtech Traffic Optimizatin Gateway and its CDM 800 Gateway

More information

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools.

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools. Q.1 What is Trubleshting Tls? List their types? Trubleshting f netwrk prblems is find and slve with the help f hardware and sftware is called trubleshting tls. Trubleshting Tls - Hardware Tls They are

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

Cortex Quick Reference Supplier Guide Service Receipt Rejections for Husky Suppliers

Cortex Quick Reference Supplier Guide Service Receipt Rejections for Husky Suppliers Crtex Quick Reference Supplier Guide Service Receipt Rejectins fr Husky Suppliers Objective f the dcument The bjective f the dcument is t prvide a quick reference fr Husky suppliers t address the Cmmn

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

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

UPGRADING TO DISCOVERY 2005

UPGRADING TO DISCOVERY 2005 Centennial Discvery 2005 Why Shuld I Upgrade? Discvery 2005 is the culminatin f ver 18 mnths wrth f research and develpment and represents a substantial leap frward in audit and decisin-supprt technlgy.

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

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

Chapter 5. The Network Layer IP

Chapter 5. The Network Layer IP Chapter 5 The Netwrk Layer IP These slides are taken frm the bk Cmputer etwrking, A Tp Dwn Apprach Featuring the Internet by Kurse & Rss and frm the bk Cmputer etwrks by Andrew Tanenbaum. The Netwrk Layer

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

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

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

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

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

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

OO Shell for Authoring (OOSHA) User Guide

OO Shell for Authoring (OOSHA) User Guide Operatins Orchestratin Sftware Versin: 10.70 Windws and Linux Operating Systems OO Shell fr Authring (OOSHA) User Guide Dcument Release Date: Nvember 2016 Sftware Release Date: Nvember 2016 Legal Ntices

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

1. What is a characteristic of Frame Relay that provides more flexibility than a dedicated line?

1. What is a characteristic of Frame Relay that provides more flexibility than a dedicated line? CCNA 4 Chapter 4 v5.0 Exam Answers 2015 (100%) 1. What is a characteristic f Frame Relay that prvides mre flexibility than a dedicated line? Dedicated physical circuits are installed between each site.

More information

Jira For T2S. External User Guide. Version 1.1

Jira For T2S. External User Guide. Version 1.1 Jira Fr T2S External User Guide Versin 1.1 Cntents 1.0 Dcument Management 4 1.1 Dcument Identifier 4 1.2 Dcument Histry 4 2.0 Intrductin 4 3.0 Getting Started 5 3.1 Cnnect 5 3.2 Lg In 5 4.0 Create an

More information

Remoting SDK Release Notes

Remoting SDK Release Notes Remting SDK Release Ntes Release 2018 R2 Dcument Versin: 1.0 10 August 2018 This dcument is a cmpilatin f sftware and sftware dcumentatin defects, and sftware specificatin clarificatins, updates, and changes.

More information

1. The first section examines common performance bottlenecks that need to be considered.

1. The first section examines common performance bottlenecks that need to be considered. OAKS Online Intrductin Oregn s OAKS Online is a cmputer-based adaptive test in which items are selected accrding t each student s ability. OAKS Online has incrprated a number f features and updates based

More information

MySqlWorkbench Tutorial: Creating Related Database Tables

MySqlWorkbench Tutorial: Creating Related Database Tables MySqlWrkbench Tutrial: Creating Related Database Tables (Primary Keys, Freign Keys, Jining Data) Cntents 1. Overview 2 2. Befre Yu Start 2 3. Cnnect t MySql using MySqlWrkbench 2 4. Create Tables web_user

More information

Apache Solr for FSI SERVER. User Manual. Version 4.5

Apache Solr for FSI SERVER. User Manual. Version 4.5 Apache Slr fr FSI SERVER User Manual Versin 4.5 Apache Slr fr FSI Server NeptuneLabs GmbH Lagesche Str. 32 D-32657 Lemg Germany 2009-2015 NeptuneLabs. All rights reserved. Last updated: Nvember 2013 FSI

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

An Introduction to Crescendo s Maestro Application Delivery Platform

An Introduction to Crescendo s Maestro Application Delivery Platform An Intrductin t Crescend s Maestr Applicatin Delivery Platfrm Intrductin This dcument is intended t serve as a shrt intrductin t Crescend s Maestr Platfrm and its cre features/benefits. The dcument will

More information

Paraben s Phone Recovery Stick

Paraben s Phone Recovery Stick Paraben s Phne Recvery Stick v. 3.0 User manual Cntents Abut Phne Recvery Stick... 3 What s new!... 3 System Requirements... 3 Applicatin User Interface... 4 Understanding the User Interface... 4 Main

More information

Virtual Office

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

More information

Password Management Guidelines

Password Management Guidelines Unified Cntract System Passwrd Management Guidelines Versin 2.5 Revisin date: 26-06-2006 Authr:J.Thiyagarajan Cpyright 2006 by Hexaware Technlgies Limited All rights reserved. All text and figures included

More information

ABELDent Platform Setup Conventions

ABELDent Platform Setup Conventions ABELDent Platfrm Setup Cnventins 1 Intrductin 1.1 Purpse f this dcument The purpse f this dcument is t prvide prspective ABELDent licensees and their hardware vendrs with the infrmatin that they will require

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

Guidance for Applicants: Submitting an application in AAS Ishango Grants Management

Guidance for Applicants: Submitting an application in AAS Ishango Grants Management Guidance fr Applicants: Submitting an applicatin in AAS Ishang Grants Management Histry f changes Versin Date Changes 1 Nv 2016 Current versin Pushing the centre f gravity t Africa 1 Table f Cntents 1

More information

Guidance for Submitting an application or Nomination in AAS Ishango Online System

Guidance for Submitting an application or Nomination in AAS Ishango Online System Guidance fr Submitting an applicatin r Nminatin in AAS Ishang Online System Histry f changes Versin Date Changes 1 Nv 2016 Current versin Pushing the centre f gravity t Africa 1 Table f Cntents 1 General

More information

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2 Réf. ThmX-NT-SI-CC001 Table f Cntents Sftware Technical Specificatins fr ThmX Authr : Philippe Page 1 / 9 1.INTRODUCTION... 2 2.TECHNICAL REQUIREMENTS... 2 3.DOCUMENTATION REQUIREMENTS... 4 4.COMPUTING

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

$ARCSIGHT_HOME/current/user/agent/map. The files are named in sequential order such as:

$ARCSIGHT_HOME/current/user/agent/map. The files are named in sequential order such as: Lcatin f the map.x.prperties files $ARCSIGHT_HOME/current/user/agent/map File naming cnventin The files are named in sequential rder such as: Sme examples: 1. map.1.prperties 2. map.2.prperties 3. map.3.prperties

More information

2. Which command can be used to view the cable type that is attached to a serial interface?

2. Which command can be used to view the cable type that is attached to a serial interface? CCNA 4 Chapter 3 v5.0 Exam Answers 2015 (100%) 1. At which layer f the OSI mdel des multiplexing take place? Layer 1 Layer 2 Layer 3 Layer 4 2. Which cmmand can be used t view the cable type that is attached

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

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

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

Protocol Insight UFS Test Executive Key Features and Benefits Deep packet inspection performed with a unique protocol-aware Rule Checker engine

Protocol Insight UFS Test Executive Key Features and Benefits Deep packet inspection performed with a unique protocol-aware Rule Checker engine Prtcl Insight UFS Test Executive UFS20COMP Test Executive prvides cmplete prtcl debug and analysis f UFS devices, including deep packet inspectin, stress testing, custm test case executin, and CTS and

More information

SeaLinx Guide. Table of Contents

SeaLinx Guide. Table of Contents SeaLinx Guide Table f Cntents SeaLinx Overview... 2 Cre Cmpnent... 2 Physical Layer... 2 Mac Layer... 3 Netwrk Layer... 4 Transprt Layer... 5 Applicatin Layer... 6 Quick Start Guide... 6 Sftware Installatin

More information

EDS-Site Entry User Manual

EDS-Site Entry User Manual EDS- Revisin Histry Versin Date Authr/Organizatin Descriptin 1.0 2011-06-08 Jn Pelster First Draft 2012 Gvernment f Alberta Page 2 f 14 Disclaimer In this disclaimer prvisin: Crwn means Her Majesty the

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

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

Once the Address Verification process is activated, the process can be accessed by employees in one of two ways:

Once the Address Verification process is activated, the process can be accessed by employees in one of two ways: Type: System Enhancements ID Number: SE 94 Date: June 29, 2012 Subject: New Address Verificatin Prcess Suggested Audience: Human Resurce Offices Details: Sectin I: General Infrmatin fr Address Verificatin

More information

Enrolling onto the Open Banking Directory How To Guide

Enrolling onto the Open Banking Directory How To Guide Enrlling nt the Open Banking Directry Hw T Guide Date: Octber 2017 Versin: v3.0 Classificatin: PUBLIC OPEN BANKING LIMITED ENROLLING ONTO THE OPEN BANKING DIRECTORY Page 1 f 14 Cntents 1. Intrductin 3

More information

HP MPS Service. HP MPS Printer Identification Stickers

HP MPS Service. HP MPS Printer Identification Stickers HP MPS Service We welcme yu t HP Managed Print Services (MPS). Fllwing yu will find infrmatin regarding: HP MPS printer identificatin stickers Requesting service and supplies fr devices n cntract Tner

More information

SolarEdge. Communication Options. Version 1.1

SolarEdge. Communication Options. Version 1.1 SlarEdge Cmmunicatin Optins Versin 1.1 Versin Histry Versin Histry Versin 1.0 (2012) Initial release Versin 1.1 (Nvember 2017) Added cmmunicatin ptins: RS485-X RS485 Expansin Kit Wi-Fi Cellular Cnnectivity

More information

OpenScape Business V2

OpenScape Business V2 OpenScape Business V2 Tutrial VIP Interfaces Versin 2.0 Definitins HwT An OpenScape Business HwT describes the cnfiguratin f an OpenScape Business feature within the OpenScape Business administratin. It

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information