.Net Strong Authentication API

Size: px
Start display at page:

Download ".Net Strong Authentication API"

Transcription

1 .Net Strng Authenticatin API fr Pwerful Authenticatin Management fr Service Prviders and Enterprises Authenticatin Service Delivery Made EASY

2 Micrsft Windws Lgn with BlackShield Cpyright Cpyright CRYPTOCard Inc. All rights reserved. The infrmatin cntained herein is subject t change withut ntice. Prprietary Infrmatin f CRYPTOCard Inc. Disclaimer The infrmatin cntained in this dcument may change withut ntice, and may have been altered r changed if yu have received it frm a surce ther than CRYPTOCard Inc. While every effrt is made t ensure the accuracy f cntent ffered n these pages, CRYPTOCard Inc. shall have n liability fr errrs, missins r inadequacies in the cntent cntained herein r fr interpretatins theref. Use f this infrmatin cnstitutes acceptance fr use in an AS IS cnditin, withut warranties f any kind, and any use f this infrmatin is at the user s wn risk. N part f this dcumentatin may be reprduced withut the prir written permissin f the cpyright wner. CRYPTOCard Inc. disclaims all warranties, either expressed r implied, including the warranties f merchantability and fitness fr a particular purpse. In n event shall CRYPTOCard Inc. be liable fr any damages whatsever, including direct, indirect, incidental, cnsequential r special damages, arising frm the use r disseminatin heref, even if CRYPTOCard Inc. has been advised f the pssibility f such damages. Sme prvinces, states r cuntries d nt allw the exclusin r limitatin f liability fr cnsequential r incidental damages, s the freging limitatin may nt apply. Links and addresses t Internet resurces are inspected thrughly prir t release, but the everchanging nature f the Internet prevents CRYPTOCard Inc. frm guaranteeing the cntent r existence f the resurce. When pssible, the reference cntains alternate sites r keywrds that culd be used t acquire the infrmatin by ther methds. If yu find a brken r inapprpriate link, please send an with the tpic name, link, and its behaviur t supprt@cryptcard.cm. The sftware described in this dcument is furnished under a license and may be used r cpied nly in accrdance with the terms f the license. Trademarks BlackShield ID, CRYPTOCard and the CRYPTOCard lg are trademarks and/r registered trademarks f CRYPTOCard Crp. in Canada and/r ther cuntries. All ther gds and/r services mentined are trademarks f their respective hlders. 2

3 Micrsft Windws Lgn with BlackShield Cntact Infrmatin CRYPTOCard s technical supprt specialists can prvide assistance when planning and implementing CRYPTOCard in yur netwrk. In additin t aiding in the selectin f the apprpriate authenticatin prducts, CRYPTOCard can suggest deplyment prcedures that prvide a smth, simple transitin frm existing access cntrl systems and a satisfying experience fr netwrk users. We can als help yu leverage yur existing netwrk equipment and systems t maximize yur return n investment. CRYPTOCard wrks clsely with channel partners t ffer wrldwide Technical Supprt services. If yu purchased this prduct thrugh a CRYPTOCard channel partner, please cntact yur partner directly fr supprt needs. T cntact CRYPTOCard directly: United Kingdm 2430 The Quadrant, Aztec West, Almndsbury, Bristl, BS32 4AQ, U.K. Phne: Fax: supprt@cryptcard.cm Nrth America March Rad, Kanata, Ontari, Canada K2K 2E4 Phne: Fax: supprt@cryptcard.cm Fr infrmatin abut btaining a supprt cntract, see ur Supprt Web page at Overview 3

4 Micrsft Windws Lgn with BlackShield Authenticatin Service Delivery Platfrm Cmpatibility Publicatin Histry Date Changes Versin Dcument created Cpyright dates updated Minr updates 1.2 4

5 Micrsft Windws Lgn with BlackShield Overview This dcument utlines the BlackShield ID authenticatin API that allws agents t supprt all the functinality that is required t interact with the BlackShield authenticatin server. BlackShield agents are essentially third party applicatins which have plug-in cde embedded in rder t allw the cllectin f user names and ne time passwrds t be passed t the BlackShield server t be verified. Specificatin Overview BlackShield ID Authenticatin API The BlackShield ID authenticatin API is represented by a single C# class BSIDAPI. This class has a default cnstructr which lads its cnfiguratin infrmatin frm a default registry lcatin, and als an alternate cnstructr t allw the user t define an alternate lcatin in the registry frm which t lad its cnfiguratin. Cnstructrs BSIDAPI() { } // reads registry SOFTWARE\CRYPTOCard\BlackShield ID\BSIDAPI BSIDAPI(string CnnectinInfrmatin) { } // reads registry key defined by CnnectinInfrmatin Nte: By using the cnnectin infrmatin in the cnstructr, an agent may specify ne r mre BlackShield servers in rder t implement failver authenticatins. The cnnectin infrmatin fr each BlackShield server can be stred in its wn key. Overview 5

6 Micrsft Windws Lgn with BlackShield Authenticate Methd All authenticatin related actins make use f a single API call: Authenticate ( string user, string rg, string ipaddress, string passcde, ref string challenge, ref string state ); returns: where: int 0 Authenticatin Failed 1 Authenticatin Succeeded 2 Challenge 3 Server prvided PIN 4 User needs t prvide PIN 5 Authenticatin in uter windw. Re-authenticate. 6 User must change their static passwrd. 7 Static passwrd change des nt satisfy plicies. 8- PIN prvided desn t meet requirements. Please prvide a new PIN. user a string representing the user name f the individual wh is authenticating. rg a string representing the rganizatin t which the individual wh is authenticating belngs. This currently shuld be passed as an empty string t represent the default rganizatin. ipaddress a string representing the IP address frm which the authenticatin request came. If this parameter is an empty string, the BlackShield server will attempt t detect the IP frm which the authenticatin request came frm. passcde a string representing the user s passcde. This may take frm f either: [PIN+OTP] fr server-side PIN authenticatin. [OTP] tken side PINs r n PIN. [PIN] when respnding t a server-side user changeable PIN change request. [StaticPasswrd] user has a static passwrd enabled r is respndng t a static passwrd change. Finally, this parameter may als be set t null t indicate a challenge is required. Specificatin Overview 6

7 Micrsft Windws Lgn with BlackShield challenge a string passed by reference that may be ppulated with a challenge/pin change/uter windw authenticatin message. state a string passed by reference that may be ppulated with a state attribute. When returning a challenge, the same state shuld passed back t the server. VerifySignature Methd Verifies the tken's signature fr a given hash. VerifySignature ( ); returns: string SerialNumber, string Hash, string Signature where: int 0 Signature is incrrect fr hash prvided. 1 Signature is crrect fr hash prvided. SerialNumber a string representing the tken s serial number. Hash a string representing the hash value t verify. Signature a string representing the signature t verify fr the prvided hash. Specificatin Overview 7

8 Micrsft Windws Lgn with BlackShield CheckServerStatus Methd The peratinal status f the BlackShield authenticatin server can be mnitred thrugh the use f the CheckServerStatus methd. CheckServerStatus ( ); // vid returns: int 0 Server is dwn 1 Server is peratinal Nte: The CheckServerStatus methd is useful t mnitr the health f a BlackShield server fr the purpse f initiating failver t a secndary server. Specificatin Overview 8

9 Micrsft Windws Lgn with BlackShield Use Case Scenaris The BlackShield ID architecture supprts the cncept f a tken-side and server-side PIN used in either QuickLg r Challenge/Respnse mde. In additin, agents must supprt challenges, inner/uter windw authenticatin, and static passwrd authenticatin. The fllwing sectins discuss these features in mre detail. Basic Authenticatin The cmmunicatin between a BlackShield agent and server is smewhat similar t that used in the RADIUS prtcl, in that the cncepts f challenge messages and states are used. The fllwing scenari shws the mst basic interactin between the agent and server: 1. Authenticating agent issues an authenticatin request with username, rganizatin name, and a passcde. 2. Server respnds with ne f nine pssible return cdes as utlined in Authenticate Methd n page 6. Challenge-Respnse Central t the cncept f challenge/respnse authenticatin, uter windw authenticatin, and server-side PIN changes, is a challenge message and state attribute issued frm the authenticating server. This mechanism is emplyed t authenticate tkens in challenge/respnse mde in the fllwing manner: 1. Authenticating agent issues an authenticatin request with username, rganizatin name, and a blank passcde. 2. Server respnds with a challenge message cntaining a challenge string i.e.: challenge: , and a state attribute. 3. Authenticating agent respnds t the challenge by issuing anther authenticatin request with their username, rganizatin name, a respnse, and the state attribute. NOTE: In rder t supprt lcalizatin, the BlackShield server returns nly necessary data in its challenge messages, and the agent is required t cnstruct a lcalized versin f it t display t the client. Fr example, the BlackShield server wuld return nly , and the BlackShield agent wuld display Please respnd t the challenge: Specificatin Overview 9

10 Micrsft Windws Lgn with BlackShield Outer Windw Authenticatin Als harnessing the cncept f challenge messages and maintaining state, is the authenticating a user thrugh inner/uter windw authenticatin. Outer windw authenticatin allws a user t authenticate by prviding a match in a large lk ahead windw; hwever, they must als be able t respnd t a fllw up challenge which asks them t prvide the exact next OTP frm their tken. The fllw sequence illustrates this functinality: 1. Authenticating agent issues an authenticatin request with username, rganizatin name, and a passcde. 2. The server finds a match fr the prvided OTP in the uter windw, therefre it issues a challenge t the client cntaining an uter windw authenticatin string, i.e.: Please reauthenticate using the next OTP frm yur tken, and a state attribute. 3. Authenticating agent respnds t the challenge by issuing anther authenticatin request with their username, rganizatin name, a respnse, and the state attribute. PIN Styles NOTE: Please see the lcalizatin nte in Challenge-Respnse n page 9. A number f PIN styles in BlackShield ID are supprted: N PIN. Fixed PIN. (tken side PIN validatin) User-changeable PINs. (tken side PIN validatin) Stred n server, fixed PIN. Stred n server, user-changeable PIN. Stred n server, server-changeable PIN. The authenticatin mechanism in BlackShield supprts incming passcdes in the fllwing frmat [PIN+OTP], [OTP], [NEWPIN], [STATICPASSWORD] and an empty passcde t request a challenge. In the case f PINs which are stred n the server, yet are user r server changeable, the challenge framewrk needs t be leveraged again in the fllwing manner: Stred n server, user-changeable 1. Authenticating agent issues an authenticatin request with username, rganizatin name, and a passcde. 2. The server finds a match fr the prvided OTP hwever it determines that it is necessary fr the user t change their PIN, therefre it issues a challenge t the client cntaining a PIN change string, i.e.: Yur PIN has expired. Please enter a new PIN: and a state attribute. 3. The authenticating agent respnds t the challenge by returning the new PIN, and the state attribute. Specificatin Overview 10

11 Micrsft Windws Lgn with BlackShield NOTE: Please see the lcalizatin nte in sectin Stred n server, server-changeable 1. Authenticating agent issues an authenticatin request with username, rganizatin name, and a passcde. 2. The server finds a match fr the prvided OTP hwever it determines that it is necessary fr the user t change their PIN, therefre it issues a challenge t the client cntaining a PIN change string, i.e.: Yur new PIN is 628. Please re-authenticate using this new PIN and yur next passcde and a state attribute. 3. Authenticating agent respnds t the challenge by issuing anther authenticatin request with their username, rganizatin name, the new PIN and OTP, and the state attribute. NOTE: Please see the lcalizatin nte in Challenge-Respnse n page 9. Static Passwrd Authenticatin BlackShield ID als ffers the ptin f static passwrd authenticatin, with the ability fr the user t change their passwrd. The challenge respnse architecture can be used t facilitate this functinality, in the fllwing manner: 1. Authenticating agent issues an authenticatin request with username, rganizatin name, and a static passcde. 2. If the user is nt required t change their static passwrd and it is crrect, the server returns access-accept. If the user is required t change their static passwrd, a challenge message will be issued t client, i.e.: Yur passwrd has expired. Please enter a new passwrd: and a state attribute. 3. The authenticating agent respnds t the challenge by issuing an access-request message with their username, rganizatin, the new static passwrd, and the state attribute. NOTE: Please see the lcalizatin nte in Challenge-Respnse n page 9. Specificatin Overview 11

12 Micrsft Windws Lgn with BlackShield 3.3 Agent Key Files The BlackShield ID API uses an encrypted key file t secure cmmunicatin with the server. T accmplish this, a key file is laded and registered with agents, and then a matching key is registered with the authenticatin server. A sample key file (default.bsidkey) has been installed fr evaluatin purpses; hwever, it is strngly recmmended that yu generate yur wn key file fr a prductin envirnment, as the sample file is publicly distributed. The sectin belw will describe the steps required t use yur wn key file. Lad Key File 1. Dwnlad an agent key file in the Agent Settings sectin f the System Tab. 2. Using Windws Explrer change yur current wrking directry t the KeyFile directry by typing "[INSTALLDIR]\KeyFile\" in the address bar where [INSTALLDIR] represents the install directry f this API. 3. Cpy and paste the agent key file btained frm step number ne abve. Register Key File 1. It is necessary t register the certificate that has been laded abve. T register, first pen up a cmmand windw (Start->Run) and type regedit, fllwed by clicking n OK. 2. Expand My Cmputer, HKEY_LOCAL_MACHINE, SOFTWARE, CRYPTOCARD, BLACKSHIELD ID, BSIDAPI 1 3. Duble click EncryptinKeyFile 4. In the text bx, enter the fully qualified path t the agent key file that was laded abve. Then click OK. 1 In the event that yu are using a custm registry key lcatin as passed t the BSIDAPI cnstructr, yu shuld update key file infrmatin f that registry key instead. Specificatin Overview 12

13 Micrsft Windws Lgn with BlackShield Lgging If an unexpected behavir ccurs, the BlackShield ID API will lg an errr message t the Windws Event Viewer s Applicatin lg. The surce will appear as BSIDAPI. API Example Please see the apitestclient directry fr an example f hw t add a reference t the BSIDAPI.dll, and use the BSIDAPI class t define cnnectin infrmatin, and call the Authenticate and CheckServerStatus methds. Deplyment Shuld yu wish t deply yur cmpleted applicatin t anther cmputer, yu shuld keep in mind the fllwing cnfiguratin needed t supprt the BlackShield ID API: 1. Deply the registry keys as defined by: SOFTWARE\CRYPTOCard\BlackShield ID\BSIDAPI Or if yu are using custm registry key(s) t define cnnectin infrmatin as passed t the BSIDAPI cnstructr, yu shuld deply thse registry key(s). 2. An agent key file shuld als be deplyed and installed using the instructins in 3.3 Agent Key Files n page Finally, BSIDAPI.dll depends n the.net Framewrk versin 2.0, Micrsft Visual C Redistributable Package and CryptCOM.dll. Fr best results, deply CryptCOM.dll t the System32 flder. Specificatin Overview 13

How To Upgrade A Crptocard To A 6.4 Migratin Tl (Cpl) For A 6Th Generation Of A Crntl (Cypercoder) On A Crperd (Cptl) 6.

How To Upgrade A Crptocard To A 6.4 Migratin Tl (Cpl) For A 6Th Generation Of A Crntl (Cypercoder) On A Crperd (Cptl) 6. BlackShield ID Upgrade and Migratin Guide Fr CRYPTO-Server 6.4 Users Cpyright 2010 CRYPTOCard Inc. website: http://www.cryptcard.cm Trademarks CRYPTOCard and the CRYPTOCard lg are registered trademarks

More information

Installation Guide Marshal Reporting Console

Installation Guide Marshal Reporting Console INSTALLATION GUIDE Marshal Reprting Cnsle Installatin Guide Marshal Reprting Cnsle March, 2009 Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 3 Sftware Prerequisites 3 Installatin

More information

Installation Guide Marshal Reporting Console

Installation Guide Marshal Reporting Console Installatin Guide Installatin Guide Marshal Reprting Cnsle Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 2 Sftware Prerequisites 3 Installatin Prcedures 3 Appendix: Enabling

More information

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and ii Cpyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.cm/ We have attempted t make these dcuments cmplete, accurate, and useful, but we cannt guarantee them t be perfect. When we

More information

Introduction to Mindjet MindManager Server

Introduction to Mindjet MindManager Server Intrductin t Mindjet MindManager Server Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 mindjet.cm 2013 Mindjet. All Rights

More information

This guide is intended for administrators, who want to install, configure, and manage SAP Lumira, server for BI Platform

This guide is intended for administrators, who want to install, configure, and manage SAP Lumira, server for BI Platform Hw T install SAP Lumira, server n SAP BusinessObjects BI platfrm Distributed Install Applies t: SAP Lumira, server versin fr the SAP BusinessObjects BI platfrm Summary This guide is intended fr administratrs,

More information

AvePoint High Speed Migration Supplementary Tools

AvePoint High Speed Migration Supplementary Tools AvePint High Speed Migratin Supplementary Tls User Guide Issued April 2016 1 Table f Cntents Intrductin... 3 MD5 Value Generatr Tl... 3 Azure Data Uplad Tl... 3 Dwnlading and Unpacking the Tl... 4 Using

More information

TaskCentre v4.5 Send Message (SMTP) Tool White Paper

TaskCentre v4.5 Send Message (SMTP) Tool White Paper TaskCentre v4.5 Send Message (SMTP) Tl White Paper Dcument Number: PD500-03-17-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

Click Studios. Passwordstate. SafeNet Two-Factor Configuration

Click Studios. Passwordstate. SafeNet Two-Factor Configuration Passwrdstate SafeNet Tw-Factr Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in

More information

Instant Chime for IBM Sametime Quick Start Guide

Instant Chime for IBM Sametime Quick Start Guide Instant Chime fr IBM Sametime Quick Start Guide Fall 2014 Cpyright 2014 Instant Technlgies. All rights reserved. Cpyright and Disclaimer This dcument, as well as the sftware described in it, is furnished

More information

HOWTO: How to configure SSL VPN tunnel gateway (office) to gateway

HOWTO: How to configure SSL VPN tunnel gateway (office) to gateway HOWTO: Hw t cnfigure SSL VPN tunnel gateway (ffice) t gateway Hw-t guides fr cnfiguring VPNs with GateDefender Integra Panda Security wants t ensure yu get the mst ut f GateDefender Integra. Fr this reasn,

More information

StarterPak: Dynamics CRM Opportunity To NetSuite Sales Order

StarterPak: Dynamics CRM Opportunity To NetSuite Sales Order StarterPak: Dynamics CRM Opprtunity T NetSuite Sales Order Versin 1.0 7/20/2015 Imprtant Ntice N part f this publicatin may be reprduced, stred in a retrieval system, r transmitted in any frm r by any

More information

StarterPak: Dynamics CRM On-Premise to Dynamics Online Migration - Option 2. Version 1.0

StarterPak: Dynamics CRM On-Premise to Dynamics Online Migration - Option 2. Version 1.0 StarterPak: Dynamics CRM On-Premise t Dynamics Online Migratin - Optin 2 Versin 1.0 1/7/2016 Imprtant Ntice N part f this publicatin may be reprduced, stred in a retrieval system, r transmitted in any

More information

Configuring and Integrating LDAP

Configuring and Integrating LDAP Cnfiguring and Integrating LDAP The Basics f LDAP 3 LDAP Key Terms and Cmpnents 3 Basic LDAP Syntax 4 The LDAP User Experience Mnitr 6 This dcument includes infrmatin abut LDAP and its rle with SlarWinds

More information

MaaS360 Cloud Extender

MaaS360 Cloud Extender MaaS360 Clud Extender Installatin Guide Cpyright 2012 Fiberlink Cmmunicatins Crpratin. All rights reserved. Infrmatin in this dcument is subject t change withut ntice. The sftware described in this dcument

More information

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1 Imprved Data Center Pwer Cnsumptin and Streamlining Management in Windws Server 2008 R2 with SP1 Disclaimer The infrmatin cntained in this dcument represents the current view f Micrsft Crpratin n the issues

More information

Preparing to Deploy Reflection : A Guide for System Administrators. Version 14.1

Preparing to Deploy Reflection : A Guide for System Administrators. Version 14.1 Preparing t Deply Reflectin : A Guide fr System Administratrs Versin 14.1 Table f Cntents Table f Cntents... 2 Preparing t Deply Reflectin 14.1:... 3 A Guide fr System Administratrs... 3 Overview f the

More information

Aras Innovator Internet Explorer Client Configuration

Aras Innovator Internet Explorer Client Configuration Aras Innvatr Internet Explrer Client Cnfiguratin Aras Innvatr 9.3 Dcument #: 9.3.012282009 Last Mdified: 6/10/2011 Aras Crpratin ARAS CORPORATION Cpyright 2011 All rights reserved Aras Crpratin 300 Brickstne

More information

TaskCentre v4.5 File Transfer (FTP) Tool White Paper

TaskCentre v4.5 File Transfer (FTP) Tool White Paper TaskCentre v4.5 File Transfer (FTP) Tl White Paper Dcument Number: PD500-03-22-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

LogMeIn Rescue Web SSO via SAML 2.0 Configuration Guide

LogMeIn Rescue Web SSO via SAML 2.0 Configuration Guide LgMeIn Rescue Web SSO via SAML 2.0 LgMeIn Rescue Web SSO via SAML 2.0 Cnfiguratin Guide 02-19-2014 Cpyright 2015 LgMeIn, Inc. 1 LgMeIn Rescue Web SSO via SAML 2.0 Cntents 1 Intrductin... 3 1.1 Dcument

More information

Configuring and Monitoring AS400 Servers. eg Enterprise v5.6

Configuring and Monitoring AS400 Servers. eg Enterprise v5.6 Cnfiguring and Mnitring AS400 Servers eg Enterprise v5.6 Restricted Rights Legend The infrmatin cntained in this dcument is cnfidential and subject t change withut ntice. N part f this dcument may be reprduced

More information

Aras Innovator Internet Explorer Client Configuration

Aras Innovator Internet Explorer Client Configuration Aras Innvatr Internet Explrer Client Cnfiguratin Aras Innvatr 9.1 Dcument #: 9.1.009032008 Last Mdified: 3/17/2009 Aras Crpratin ARAS CORPORATION Cpyright 2009 All rights reserved Aras Crpratin 300 Brickstne

More information

ScaleIO Security Configuration Guide

ScaleIO Security Configuration Guide ScaleIO Security Cnfiguratin Guide 1 Intrductin This sectin prvides an verview f the settings available in ScaleIO t ensure secure peratin f the prduct: Security settings are divided int the fllwing categries:

More information

Serv-U Distributed Architecture Guide

Serv-U Distributed Architecture Guide Serv-U Distributed Architecture Guide Hrizntal Scaling and Applicatin Tiering fr High Availability, Security, and Perfrmance Serv-U Distributed Architecture Guide v14.0.1.0 Page 1 f 16 Intrductin Serv-U

More information

Configuring and Monitoring SysLog Servers

Configuring and Monitoring SysLog Servers Cnfiguring and Mnitring SysLg Servers eg Enterprise v5.6 Restricted Rights Legend The infrmatin cntained in this dcument is cnfidential and subject t change withut ntice. N part f this dcument may be reprduced

More information

USF Remote Desktop Gateway

USF Remote Desktop Gateway USF Remte Desktp Gateway Fr Hme Cmputers and Laptps Running Windws XP The Remte Desktp Gateway (RDG) allws access t yur USF campus cmputer frm remte lcatins while adding an additinal layer f security t

More information

Diagnosis and Troubleshooting

Diagnosis and Troubleshooting Diagnsis and Trubleshting DataDirect Cnnect Series ODBC Drivers Intrductin This paper discusses the diagnstic tls that are available t cnfigure and trublesht yur ODBC envirnment and prvides a trubleshting

More information

Corente Cloud Services Exchange (CSX) Corente Cloud Services Gateway Site Survey Form

Corente Cloud Services Exchange (CSX) Corente Cloud Services Gateway Site Survey Form Crente Clud Services Exchange (CSX) Crente Clud Services Gateway Site Survey Frm Use this site survey frm t prvide yur Crente CSX administratr r service prvider with the necessary infrmatin t register

More information

STIOffice Integration Installation, FAQ and Troubleshooting

STIOffice Integration Installation, FAQ and Troubleshooting STIOffice Integratin Installatin, FAQ and Trubleshting Installatin Steps G t the wrkstatin/server n which yu have the STIDistrict Net applicatin installed. On the STI Supprt page at http://supprt.sti-k12.cm/,

More information

FINRA Regulation Filing Application Batch Submissions

FINRA Regulation Filing Application Batch Submissions FINRA Regulatin Filing Applicatin Batch Submissins Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 FTP Access t FINRA... 2 FTP Accunt n FINRA s

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

Junos Pulse Instructions for Windows and Mac OS X

Junos Pulse Instructions for Windows and Mac OS X Juns Pulse Instructins fr Windws and Mac OS X When yu pen the Juns client fr the first time yu get the fllwing screen. This screen shws yu have n cnnectins. Create a new cnnectin by clicking n the + icn.

More information

ViPNet VPN in Cisco Environment. Supplement to ViPNet Documentation

ViPNet VPN in Cisco Environment. Supplement to ViPNet Documentation ViPNet VPN in Cisc Envirnment Supplement t ViPNet Dcumentatin 1991 2015 Inftecs Americas. All rights reserved. Versin: 00121-04 90 02 ENU This dcument is included in the sftware distributin kit and is

More information

Ten Steps for an Easy Install of the eg Enterprise Suite

Ten Steps for an Easy Install of the eg Enterprise Suite Ten Steps fr an Easy Install f the eg Enterprise Suite (Acquire, Evaluate, and be mre Efficient!) Step 1: Dwnlad the eg Sftware; verify hardware and perating system pre-requisites Step 2: Obtain a valid

More information

ICD-10 Handbook APPLICATION MANUAL

ICD-10 Handbook APPLICATION MANUAL APPLICATION MANUAL Table f Cntents Definitin...3 Billing...3 Transactin Cdes...3 Diagnsis Cdes...3 PQRS Measures (frmerly PQRI Measures)...5 Parameters...5 System Wide Defaults...5 System...5 Patient Definitin...6

More information

Introduction LIVE MAPS UNITY PORTAL / INSTALLATION GUIDE. 2015 Savision B.V. savision.com All rights reserved.

Introduction LIVE MAPS UNITY PORTAL / INSTALLATION GUIDE. 2015 Savision B.V. savision.com All rights reserved. Rev 7.5.0 Intrductin 2 LIVE MAPS UNITY PORTAL / INSTALLATION GUIDE 2015 Savisin B.V. savisin.cm All rights reserved. This manual, as well as the sftware described in it, is furnished under license and

More information

Durango Merchant Services QuickBooks SyncPay

Durango Merchant Services QuickBooks SyncPay Durang Merchant Services QuickBks SyncPay Gateway Plug-In Dcumentatin April 2011 Durang-Direct.cm 866-415-2636-1 - QuickBks Gateway Plug-In Dcumentatin... - 3 - Installatin... - 3 - Initial Setup... -

More information

KronoDesk Migration and Integration Guide Inflectra Corporation

KronoDesk Migration and Integration Guide Inflectra Corporation / KrnDesk Migratin and Integratin Guide Inflectra Crpratin Date: September 24th, 2015 0B Intrductin... 1 1B1. Imprting frm Micrsft Excel... 2 6B1.1. Installing the Micrsft Excel Add-In... 2 7B1.1. Cnnecting

More information

Click Studios. Passwordstate. RSA SecurID Configuration

Click Studios. Passwordstate. RSA SecurID Configuration Passwrdstate RSA SecurID Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in writing

More information

Connector for Microsoft Dynamics Installation Guide

Connector for Microsoft Dynamics Installation Guide Micrsft Dynamics Cnnectr fr Micrsft Dynamics Installatin Guide June 2014 Find updates t this dcumentatin at the fllwing lcatin: http://g.micrsft.cm/fwlink/?linkid=235139 Micrsft Dynamics is a line f integrated,

More information

Using Shift4 with Magento

Using Shift4 with Magento D O L L A R S O N T H E N E T Using Shift4 with Magent Using Shift4 with Magent Cpyright Ntice Shift4 Crpratin 1491 Center Crssing Rad Las Vegas, NV 89144 702.597.2480 www.shift4.cm inf@shift4.cm Dcument

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

Information Services Hosting Arrangements

Information Services Hosting Arrangements Infrmatin Services Hsting Arrangements Purpse The purpse f this service is t prvide secure, supprted, and reasnably accessible cmputing envirnments fr departments at DePaul that are in need f server-based

More information

Configuring BMC AREA LDAP Using AD domain credentials for the BMC Windows User Tool

Configuring BMC AREA LDAP Using AD domain credentials for the BMC Windows User Tool Cnfiguring BMC AREA LDAP Using AD dmain credentials fr the BMC Windws User Tl Versin 1.0 Cnfiguring the BMC AREA LDAP Plugin fr Dmain Username and Passwrds Intrductin...3 LDAP Basics...4 What is LDAP and

More information

ROSS RepliWeb Operations Suite for SharePoint. SSL User Guide

ROSS RepliWeb Operations Suite for SharePoint. SSL User Guide ROSS RepliWeb Operatins Suite fr SharePint SSL User Guide Sftware Versin 2.5 March 18, 2010 RepliWeb, Inc., 6441 Lyns Rad, Ccnut Creek, FL 33073 Tel: (954) 946-2274, Fax: (954) 337-6424 E-mail: inf@repliweb.cm,

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

SBClient and Microsoft Windows Terminal Server (Including Citrix Server) SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance

More information

SITE APPLICATIONS USER GUIDE:

SITE APPLICATIONS USER GUIDE: SITE APPLICATIONS USER GUIDE: CPCONTROLLER, CCENGINE, SYNC, TPORT, CCTERMINAL Cpyright 2013 Triple E Technlgies. All rights reserved. Site Applicatins User Guide INTRODUCTION The applicatins described

More information

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions FOCUS Service Management Sftware Versin 8.5 fr CunterPint Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins will

More information

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions FOCUS Service Management Sftware fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins

More information

E-Biz Web Hosting Control Panel

E-Biz Web Hosting Control Panel 1 f 38 E-Biz Web Hsting Cntrl Panel This dcument has been created t give yu a useful insight in t the Hsting Cntrl Panel available with E-Biz hsting services. Please nte: Optins available are dependent

More information

Adobe Sign. Enabling Single Sign-On with SAML Reference Guide

Adobe Sign. Enabling Single Sign-On with SAML Reference Guide Enabling Single Sign-On with SAML Reference Guide 2016 Adbe Systems Incrprated. All Rights Reserved. Prducts mentined in this dcument, such as the services f identity prviders Micrsft Active Directry Federatin,

More information

SpiraPlan & SpiraTeam Version Control Integration User Guide Inflectra Corporation

SpiraPlan & SpiraTeam Version Control Integration User Guide Inflectra Corporation SpiraPlan & SpiraTeam Versin Cntrl Integratin User Guide Inflectra Crpratin Date: Nvember 19th, 2014 Cntents 1. Intrductin... 1 2. Integrating with Subversin... 2 3. Integrating with Perfrce... 7 4. Integrating

More information

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers)

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers) Firewall/Prxy Server Settings t Access Hsted Envirnment Client firewall settings in mst cases depend n whether the firewall slutin uses a Stateful Inspectin prcess r ne that is cmmnly referred t as an

More information

TaskCentre v4.5 SMTP Tool White Paper

TaskCentre v4.5 SMTP Tool White Paper TaskCentre v4.5 SMTP Tl White Paper Dcument Number: PD500-03-04-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT... 1 TRADEMARKS... 1 INTRODUCTION... 2 Overview... 2 Features... 2 GLOBAL CONFIGURATION...

More information

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet Custm Prtlets an unbiased review f the greatest Practice CS feature ever Andrew V. Gamet Descriptin In Practice CS, the firm can use any f the fur dashbards t quickly display relative infrmatin. The Firm,

More information

SMART Active Directory Migrator 9.0.2. Requirements

SMART Active Directory Migrator 9.0.2. Requirements SMART Active Directry Migratr 9.0.2 January 2016 Table f Cntents... 3 SMART Active Directry Migratr Basic Installatin... 3 Wrkstatin and Member Server System... 5 Netwrking... 5 SSL Certificate... 6 Service

More information

How To Install Fcus Service Management Software On A Pc Or Macbook

How To Install Fcus Service Management Software On A Pc Or Macbook FOCUS Service Management Sftware Versin 8.4 fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin

More information

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide HarePint HelpDesk fr SharePint Fr SharePint Server 2010, SharePint Fundatin 2010 User Guide Prduct versin: 14.1.0 04/10/2013 2 Intrductin HarePint.Cm (This Page Intentinally Left Blank ) Table f Cntents

More information

Software Distribution

Software Distribution Sftware Distributin Quantrax has autmated many f the prcesses invlved in distributing new cde t clients. This will greatly reduce the time taken t get fixes laded nt clients systems. The new prcedures

More information

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel An HP PrCurve Netwrking Applicatin Nte Traffic mnitring n PrCurve switches with sflw and InMn Traffic Sentinel Cntents 1. Intrductin... 3 2. Prerequisites... 3 3. Netwrk diagram... 3 4. sflw cnfiguratin

More information

Alexsys Team 2 Service Desk

Alexsys Team 2 Service Desk Alexsys Team 2 Service Desk An affrdable fully interactive Service Desk that wrks seamlessly with Alexsys Team The Alexsys Team 2 Service Desk is an add-n prduct fr Alexsys Team 2 that prvides fully interactive

More information

User Guide. Excel Data Management Pack (EDM-Pack) OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES. Date: December 2015

User Guide. Excel Data Management Pack (EDM-Pack) OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES. Date: December 2015 PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) Excel Data Management Pack (EDM-Pack) Date: December 2015 Dcument Versin: 1.0.0 Abstract The EDM-Pack includes a general-purpse Data Surce

More information

Best Practice - Pentaho BA for High Availability

Best Practice - Pentaho BA for High Availability Best Practice - Pentah BA fr High Availability This page intentinally left blank. Cntents Overview... 1 Pentah Server High Availability Intrductin... 2 Prerequisites... 3 Pint Each Server t Same Database

More information

WatchDox for Windows User Guide

WatchDox for Windows User Guide WatchDx fr Windws User Guide Versin 3.9.7 Cnfidentiality This dcument cntains cnfidential material that is prprietary WatchDx. The infrmatin and ideas herein may nt be disclsed t any unauthrized individuals

More information

BackupAssist SQL Add-on

BackupAssist SQL Add-on WHITEPAPER BackupAssist Versin 6 www.backupassist.cm 2 Cntents 1. Requirements... 3 1.1 Remte SQL backup requirements:... 3 2. Intrductin... 4 3. SQL backups within BackupAssist... 5 3.1 Backing up system

More information

USF Remote Desktop Gateway

USF Remote Desktop Gateway USF Remte Desktp Gateway Fr Hme Cmputers and Laptps Running Windws 8 The Remte Desktp Gateway (RDG) allws access t yur USF campus cmputer frm remte lcatins while adding an additinal layer f security t

More information

expertise hp services valupack consulting description security review service for Linux

expertise hp services valupack consulting description security review service for Linux expertise hp services valupack cnsulting descriptin security review service fr Linux Cpyright services prvided, infrmatin is prtected under cpyright by Hewlett-Packard Cmpany Unpublished Wrk -- ALL RIGHTS

More information

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

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents HP ExpertOne HP2-T21: Administering HP Server Slutins Industry Standard Servers Exam preparatin guide Table f Cntents Overview 2 Why take the exam? 2 HP ATP Server Administratr V8 certificatin 2 Wh shuld

More information

Deployment Overview (Installation):

Deployment Overview (Installation): Cntents Deplyment Overview (Installatin):... 2 Installing Minr Updates:... 2 Dwnlading the installatin and latest update files:... 2 Installing the sftware:... 3 Uninstalling the sftware:... 3 Lgging int

More information

NETWRIX CHANGE NOTIFIER

NETWRIX CHANGE NOTIFIER NETWRIX CHANGE NOTIFIER FOR ACTIVE DIRECTORY, EXCHANGE AND GROUP POLICY QUICK-START GUIDE Prduct versin: 7.5.873 February 2014 February 2014. Legal Ntice The infrmatin in this publicatin is furnished fr

More information

SQL 2005 Database Management Plans

SQL 2005 Database Management Plans SQL 2005 Database Management Plans Overview STI recmmends that users create database maintenance plans fr Micrsft SQL 2005 t maintain the integrity f the system s database. Database maintenance plans are

More information

How To Install An Orin Failver Engine On A Network With A Network Card (Orin) On A 2Gigbook (Orion) On An Ipad (Orina) Orin (Ornet) Ornet (Orn

How To Install An Orin Failver Engine On A Network With A Network Card (Orin) On A 2Gigbook (Orion) On An Ipad (Orina) Orin (Ornet) Ornet (Orn SlarWinds Technical Reference Preparing an Orin Failver Engine Installatin Intrductin t the Orin Failver Engine... 1 General... 1 Netwrk Architecture Optins and... 3 Server Architecture Optins and... 4

More information

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite Vlume Licensing brief Licensing the Cre Client Access License (CAL) Suite and Enterprise CAL Suite Table f Cntents This brief applies t all Micrsft Vlume Licensing prgrams. Summary... 1 What s New in This

More information

X7500 Series, X4500 Scanner Series MFPs: LDAP Address Book and Authentication Configuration and Basic Troubleshooting Tips

X7500 Series, X4500 Scanner Series MFPs: LDAP Address Book and Authentication Configuration and Basic Troubleshooting Tips X7500 Series, X4500 Scanner Series MFPs: LDAP Address Bk and Authenticatin Cnfiguratin and Basic Trubleshting Tips Lexmark Internatinal 1 Prerequisite Infrm atin In rder t cnfigure a Lexmark MFP fr LDAP

More information

Montana Acquisition & Contracting System (emacs) emacs Handbook. Vendor Registration and Data Management

Montana Acquisition & Contracting System (emacs) emacs Handbook. Vendor Registration and Data Management Mntana Acquisitin & Cntracting System (emacs) emacs Handbk Vendr Registratin and Data Management Welcme The purpse f this emacs Handbk fr Vendr Registratin and Data Management is t prvide vendrs with the

More information

Using McAllister Payment Solutions and Updating to AVImark version 2009.0.0.7263

Using McAllister Payment Solutions and Updating to AVImark version 2009.0.0.7263 Using McAllister Payment Slutins and Updating t AVImark versin 2009.0.0.7263 Befre the cnfiguratin f McAllister Payment Slutins (MPS) and AVImark, the McAllister Payment Slutins PA-DSS Implementatin Guide

More information

FAQ Frequently Asked Questions & Answers for using the online assessment platform of ΜanpowerGroup

FAQ Frequently Asked Questions & Answers for using the online assessment platform of ΜanpowerGroup FAQ Frequently Asked Questins & Answers fr using the nline assessment platfrm f ΜanpwerGrup Versin 1.0 Athens, July 2014 1 Frequently Asked Questins & Answers regarding the use f the nline assessment platfrm

More information

Configuring an Email Client for your Hosting Support POP/IMAP mailbox

Configuring an Email Client for your Hosting Support POP/IMAP mailbox Cnfiguring an Email Client fr yur Hsting Supprt POP/IMAP mailbx This article lists the email settings and prt numbers fr pp and imap cnfiguratins, as well as fr SSL. It cntains instructins fr setting up

More information

AvePoint Discovery Tool 2.1.1. User Guide

AvePoint Discovery Tool 2.1.1. User Guide AvePint Discvery Tl 2.1.1 User Guide Issued January 2016 Table f Cntents What s New in this Guide... 4 Abut Discvery Tl... 5 Why Use the AvePint Discvery Tl... 5 Frequently Asked Questins... 6 Which reprts

More information

User Guide. Sysgem SysMan Remote Control. By Sysgem AG

User Guide. Sysgem SysMan Remote Control. By Sysgem AG Sysgem SysMan Remte Cntrl User Guide By Sysgem AG Sysgem is a registered trademark f Sysgem AG. Other brands and prducts are registered trademarks f their respective hlders. 2012 Sysgem AG, Lavaterstrasse

More information

Steps to fix the product is not properly fixed issue for international clients.

Steps to fix the product is not properly fixed issue for international clients. Axxya Systems supprt cntact details 1-800-709-2977 ext 9 within US 1-425-999-4350 ext 9 utside f US Email supprt@axxya.cm Technical FAQ -- www.nutritinistpr.cm/help-center/ Steps t fix the prduct is nt

More information

iphone Mobile Application Guide Version 2.2.2

iphone Mobile Application Guide Version 2.2.2 iphne Mbile Applicatin Guide Versin 2.2.2 March 26, 2014 Fr the latest update, please visit ur website: www.frte.net/mbile Frte Payment Systems, Inc. 500 West Bethany, Suite 200 Allen, Texas 75013 (800)

More information

Optimal Payments Extension. Supporting Documentation for the Extension Package. 20140225 v1.1

Optimal Payments Extension. Supporting Documentation for the Extension Package. 20140225 v1.1 Optimal Payments Extensin Supprting Dcumentatin fr the Extensin Package 20140225 v1.1 Revisin Histry v1.1 Updated Demac Media branding v1.0 Initial Dcument fr Distributin supprt@ptimalpayments.cm Page

More information

Pexip Infinity and Cisco UCM Deployment Guide

Pexip Infinity and Cisco UCM Deployment Guide Intrductin Pexip Infinity and Cisc UCM Deplyment Guide The Cisc Unified Cmmunicatins Manager (CUCM) is a SIP registrar and call cntrl device. This guide describes hw t integrate a single Pexip Infinity

More information

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper TaskCentre v4.5 MS SQL Server Trigger Tl White Paper Dcument Number: PD500-03-02-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT... 1 TRADEMARKS... 1 INTRODUCTION... 2 Overview... 2 Features...

More information

1) Update the AccuBuild Program to the latest version Version 9.3.0.3 or later.

1) Update the AccuBuild Program to the latest version Version 9.3.0.3 or later. Certified Payrll XML Exprt As f June 4 th, 2015, The Califrnia Department f Industrial Relatins (DIR) is requiring that all certified payrll reprts be submitted nline using the ecpr system. The ecpr System

More information

GETTING STARTED With the Control Panel Table of Contents

GETTING STARTED With the Control Panel Table of Contents With the Cntrl Panel Table f Cntents Cntrl Panel Desktp... 2 Left Menu... 3 Infrmatin... 3 Plan Change... 3 Dmains... 3 Statistics... 4 Ttal Traffic... 4 Disk Quta... 4 Quick Access Desktp... 4 MAIN...

More information

RSA SecurID Software Token Security Best Practices Guide. Version 3

RSA SecurID Software Token Security Best Practices Guide. Version 3 RSA SecurID Sftware Tken Security Best Practices Guide Versin 3 Cntact Infrmatin G t the RSA crprate web site fr reginal Custmer Supprt telephne and fax numbers: www.rsa.cm. Trademarks RSA, the RSA Lg

More information

Password Reset for Remote Users

Password Reset for Remote Users 1 Passwrd Reset fr Remte Users Curin prvides a cmpnent fr the PasswrdCurier Passwrd Prvisining System that manages the lcal passwrd cache in cnjunctin with self-service passwrd reset activities. The slutin

More information

SPECIFICATION. Hospital Report Manager Connectivity Requirements. Electronic Medical Records DRAFT. OntarioMD Inc. Date: September 30, 2010

SPECIFICATION. Hospital Report Manager Connectivity Requirements. Electronic Medical Records DRAFT. OntarioMD Inc. Date: September 30, 2010 OntariMD Inc. Electrnic Medical Recrds SPECIFICATION Hspital Reprt Manager Cnnectivity Requirements DRAFT Date: September 30, 2010 Versin: 1.0 2007-2010 OntariMD Inc. All rights reserved HRM EMR Cnnectivity

More information

TaskCentre v4.5 File Management Tool White Paper

TaskCentre v4.5 File Management Tool White Paper TaskCentre v4.5 File Management Tl White Paper Dcument Number: PD500-03-30-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 TECHNICAL SUMMARY

More information

Readme File. Purpose. What is Translation Manager 9.3.1? Hyperion Translation Manager Release 9.3.1 Readme

Readme File. Purpose. What is Translation Manager 9.3.1? Hyperion Translation Manager Release 9.3.1 Readme Hyperin Translatin Manager Release 9.3.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 What is Translatin Manager 9.3.1?... 1 Cmpatible Sftware... 2 Supprted Internatinal Operating

More information

CSC IT practix Recommendations

CSC IT practix Recommendations CSC IT practix Recmmendatins CSC Healthcare 28th January 2014 Versin 3 www.csc.cm/glbalhealthcare Cntents 1 Imprtant infrmatin 3 2 IT Specificatins 4 2.1 Wrkstatins... 4 2.2 Minimum Server with 1-5 wrkstatins

More information

STIClassroom Win Rosters, Attendance, Lesson Plans and Textbooks

STIClassroom Win Rosters, Attendance, Lesson Plans and Textbooks STIClassrm Win Rsters, Attendance, Lessn Plans and Textbks Student Class Rster T access the student class rster, click the icn in the Classrm desktp. Frm the Rster screen, teachers may access the items

More information

Service Desk Self Service Overview

Service Desk Self Service Overview Tday s Date: 08/28/2008 Effective Date: 09/01/2008 Systems Invlved: Audience: Tpics in this Jb Aid: Backgrund: Service Desk Service Desk Self Service Overview All Service Desk Self Service Overview Service

More information

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2.

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2. Oracle s Hyperin Data Integratin Management Release 9.2.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 Intrductin t Data Integratin Management... 1 Data Integratin Management Adapters...

More information

CallRex 4.2 Installation Guide

CallRex 4.2 Installation Guide CallRex 4.2 Installatin Guide This dcument describes hw t install CallRex 4.2. It cvers the fllwing: CallRex 4.2 Cmpnents. Server Prerequisites. Perfrming the Installatin. Changing the Accunt Used by CallRex

More information

Avatier Identity Management Suite

Avatier Identity Management Suite Avatier Identity Management Suite AIMS Versin 9 System Requirements Versin 9 2603 Camin Ramn Suite 110 San Ramn, CA 94583 Phne: 800-609-8610 925-217-5170 FAX: 925-217-0853 Email: supprt@avatier.cm Page

More information