RiskCalc External Integration Specification

Size: px
Start display at page:

Download "RiskCalc External Integration Specification"

Transcription

1 Moody's RiskCalc External Integration Specification Last Updated: September 24, 2007 Contact Phone South Bend Robert Weiss Copyright 2002 by Moody s Investors Service, Inc., 99 Church Street, New York, New York, All rights reserved. ALL INFORMATION CONTAINED HEREIN IS COPYRIGHTED IN THE NAME OF MOODY S INVESTORS SERVICE, INC. ( MOODY S ), AND NONE OF SUCH INFORMATION MAY BE COPIED OR OTHERWISE REPRODUCED, REPACKAGED, FURTHER TRANSMITTED, TRASFERRED, DISSEMINATED, REDISTRIBUTED OR RESOLD, OR STORED FOR SUBSEQUENT USE FOR ANY SUCH PURPOSE, IN WHOLE OR IN PART, IN ANY FORM OR MANNER OR BY ANY MEANS WHATSOEVER, BY ANY PERSON WITHOUT MOODY S PRIOR WRITTEN CONSENT. All information contained herein is obtained by MOODY S from sources believed by it to be accurate and reliable. Because of the possibility of human or mechanical error as well as other factors, however, such information is provided as is without warranty of any kind and MOODY S, in particular, makes no representation or warranty, express or implied, as to the accuracy, timeliness, completeness, merchantability or fitness for any particular purpose of any such information. Under no circumstances shall MOODY S have any liability to any person or entity for (a) any loss or damage in whole or in part caused by, resulting from, or relating to, any error (negligent or otherwise) or other circumstance or contingency within or outside the control of MOODY S or any of its directors, officers, employees or agents in connection with the procurement, collection, compilation, analysis, interpretation, communication, publication or delivery of any such information, or (b) any direct, indirect, special, consequential, compensatory or incidental damages whatsoever (including without limitation, lost profits), even if MOODY S is advised in advance of the possibility of such damages, resulting from the use of or inability to use, any such information. The credit ratings, if any, constituting part of the information contained herein are, and must be construed solely as, statements of opinion and not statements of fact or recommendations to purchase, sell or hold any securities. NO WARRANTY, EXPRESS OR IMPLIED, AS TO THE ACCURACY, TIMELINESS, COMPLETENESS, MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OF ANY SUCH RATING OR OTHER OPINION OR INFORMATION IS GIVEN OR MADE BY MOODY S IN ANY FORM OR MANNER WHATSOEVER. Each rating or other opinion must be weighed solely as one factor in any investment decision made by or on behalf of any user of the information contained herein, and each such user must accordingly make its own study and evaluation of each security and of each issuer and guarantor of, and each provider of credit support for, each security that it may consider purchasing, holding or selling. Pursuant to Section 17(b) of the Securities Act of 1933, MOODY S hereby discloses that most issuers of debt securities (including corporate and municipal bonds, debentures, notes and commercial paper) and preferred stock rated by MOODY S have, prior to assignment of any rating, agreed to pay to MOODY S for appraisal and rating services rendered by it fees ranging from $1,000 to $1,500,000. RiskCalc External Integration Specification.doc 1 of 18 Last Updated 24-Sep-07

2 Table of Contents Introduction... 3 Assumptions... 3 Overview... 3 HTTP Protocol... 3 Sending XML to the server... 3 XML Input Syntax... 5 Basic Input Structure... 5 RISKCALC Header... 5 Authentication Section... 5 Operation List Section... 6 Operation Section... 6 MODEL Attribute... 6 SUBMODEL Attribute... 6 VERSION Attribute... 6 FUNCTION Attribute... 7 Function Arguments... 7 <ARGUMENT-LIST> Tag... 7 <ARGUMENT> Tag... 7 Example Operation Input... 8 XML Output Syntax... 8 Basic Output Structure... 8 <RISKCALC-OUT> Header... 9 Authentication Section... 9 Operation List Section... 9 Operation Section... 9 MODEL Attribute SUBMODEL Attribute VERSION Attribute MODELVERSION Attribute Implemented only in RiskCalc v3.1 Models FUNCTION Attribute <ERROR-CODE> Tag <ERROR-EX> Tag Function Outputs <ARGUMENT-LIST> Tag <OUTPUT-LIST> Tag <OUTPUT> Tag <EDFNOTES> Tag Implemented only in RiskCalc v3.1 Models Example Operation Output Appendix A Error Conditions Errors Code Details Appendix B Data Type Definitions Input Format Output Format Appendix C Sample Source Code Revision History RiskCalc External Integration Specification.doc 2 of 18 Last Updated 24-Sep-07

3 Introduction RiskCalc is an Internet-based application that allows customers to perform risk scoring of private companies. RiskCalc consists of a web site with an interactive interface, but it also has an external interface which allows direct integration with other systems. This document focuses on the latter and describes the method by which third parties may integrate directly with RiskCalc. Integration is performed using the RiskCalc External Integration Interface. Applications can connect directly to this interface and perform the functions available at the web site in batch mode. This document describes the general syntax and protocol for using this interface. Separate documents exist, RiskCalc External Model Specifications, specific to each model that containing functions and syntax unique to it. Assumptions This document assumes that the reader is very familiar with XML concepts and usage. This document also assumes that the reader is somewhat familiar with the HTTP protocol. Overview Users of the RiskCalc External Integration Interface need to already be set up as Moody s RiskCalc customers. Authentication information is sent as part of the transaction and all activity is logged for billing purposes. Risk scores and related functions are calculated using one or more mathematical models. Different mathematical models are suited for calculating risk for companies in different geographic regions. Users of the integration interface have the option of choosing which model they would like to use for calculating a risk score. Each of the models has one or more functions available within them. The most obvious operation is calculate expected default frequency, but there are others. Each of these functions has specific inputs and they return specific output data. This information is discussed in the RiskCalc External Model Specification document prepared for each model. Communication with the integration interface is done using an XML stream. The XML stream is sent to the integration interface using the HTTP protocol. The response data is sent back as an XML stream via the HTTP protocol. The XML protocol itself is specified in the next section. XML was chosen as a core technology of the RiskCalc interface due to the extensible way in which it identifies data elements. The model operations and indeed the models themselves are subject to change. When changes occur, the information sent as inputs and outputs from the model may need to change and XML accommodates these changes efficiently. HTTP Protocol The technique for submitting XML to the integration interface is called XML over HTTP. This is a method by which XML information is sent as part of an HTTP transaction. This is efficient since HTTP is a standard protocol and is well understood. Sending XML to the server A typical XML message sent to the server via HTTP will look something like the following: POST /XMLBatch.asp HTTP/1.1 Host: mymachine Content-Length: nnnn RiskCalc External Integration Specification.doc 3 of 18 Last Updated 24-Sep-07

4 <?XML version= 1.0?> <RISKCALC> </RISKCALC> The request is sent via the POST command in HTTP. This message example represents the minimum required HTTP headers required for RiskCalc. As the HTTP headers indicate, this request will be sent to the application XMLBatch.asp. The message's length is specified by the nnnn field. Following this is the body of the request, expressed in XML. When this message has been received and processed by the server, the server will return a response such as the following: HTTP/ OK Server: Microsoft-IIS/5.0 Date: Tue, 19 Sep :49:57 GMT Content-Length: nnnn Content-Type: text/html <?XML version= 1.0?> <RISKCALC-OUT> </RISKCALC-OUT> This is a standard HTTP response to a successful POST request, containing a response code of 200. RiskCalc External Integration Specification.doc 4 of 18 Last Updated 24-Sep-07

5 XML Input Syntax Basic Input Structure All models adhere to the basic structure of the XML syntax used by the Integration Interface for model input shown below. Reference the RiskCalc External Model Specification prepared for each model for possible extensions to this structure. <RISKCALC> <AUTHENTICATION> <USERID> </USERID> <PASSWORD> </PASSWORD> </AUTHENTICATION> <OPERATION-LIST> <OPERATION MODEL= SUBMODEL= FUNCTION= > <ARGUMENT-LIST> <ARGUMENT TYPE= > </ARGUMENT> <ARGUMENT TYPE= > </ARGUMENT> </ARGUMENT-LIST> <OPERATION> </OPERATION-LIST> </RISKCALC> RISKCALC Header All of the data in a batch RiskCalc transaction is enclosed within the <RISKCALC> tag. <RISKCALC> </RISKCALC> Authentication Section The authentication section contains the User ID and Password. <AUTHENTICATION> <USERID>moodys</USERID> <PASSWORD>rosebud</PASSWORD> </AUTHENTICATION> RiskCalc External Integration Specification.doc 5 of 18 Last Updated 24-Sep-07

6 Operation List Section The Operation List section denotes a batch of operations and it contains one or more operations to be run against the model. Each transaction in the batch is enclosed within <OPERATION> tags and the entire list of transactions is enclosed in the <OPERATION-LIST> tags. The body of the <OPERATION> section is described in the next section. <OPERATION-LIST> <OPERATION> The first operation <OPERATION> The second operation And so on </OPERATION-LIST> Operation Section The Operation section contains all the data needed to submit a request to the mathematical model. It designates which model and submodel to be used, the function to call within the model, and it supplies all the input arguments required by the model. <OPERATION MODEL= SUBMODEL= VERSION= FUNCTION= > <ARGUMENT-LIST> <ARGUMENT TYPE= Type1 >Arg1</ARGUMENT> <ARGUMENT TYPE= Type2 >Arg2</ARGUMENT> More arguments </ARGUMENT-LIST> MODEL Attribute The MODEL attribute is set to one of the model identifiers listed in the table at right. This ID defines the model to be used. For a full description of each of the available models, refer to the respective model document. Note that availability of specific models is subject to change over time. ID PRV FIN Description Private Financial (Banking model) SUBMODEL Attribute The SUBMODEL attribute is used to further refine the request. It is generally used to identify the geographic region for which the model has been prepared. Consult the RiskCalc External Model Specification prepared for each model for the definition of the submodel attribute. Note that availability of specific submodels is subject to change over time. VERSION Attribute The VERSION attribute is used to attempt to invoke an older revision of the model. This tag is normally omitted and this causes the most up to date version of the model to be invoked for the given operation RiskCalc External Integration Specification.doc 6 of 18 Last Updated 24-Sep-07

7 FUNCTION Attribute The FUNCTION attribute is set to the specific function to call within the model. For a full description of each of the functions available within a model/submodel, refer to respective models external model specification. Note that availability of specific functions is subject to change over time. Function Arguments <ARGUMENT-LIST> Tag All of the arguments are contained within the <ARGUMENT-LIST> tag. Each argument within the argument list is contained in an <ARGUMENT> tag as described under the section <ARGUMENT> Tag below. Notes: 1. Previous versions of the XML protocol supported an attribute named MULTIPLIER within the <ARGUMENT- LIST> tag. This functionality has been dropped from the XML protocol and should no longer be used. All input values should be rounded to the magnitude that the particular model expects. For detail on what these magnitudes are, please refer to the respective model documentation. Further use of the MULTIPLIER attribute will produce incorrect results. <ARGUMENT> Tag Each individual argument is designated with an <ARGUMENT> tag. The type of the argument is specified in the TYPE= attribute of the <ARGUMENT> tag. Argument types are model-specific and are listed in the respective model document. Notes: 1. All input arguments that are in units of currency will be assumed to be in the default currency the model was designed for unless otherwise defined using Currency attribute. For example for the Australian Public Firm model, the currency is assumed to be in Australian dollars. Consult the model specific External Model Specification document for supported and default currencies. 2. Previous versions of the XML protocol supported an attribute named MULTIPLIER within the <ARGUMENT> tag. This functionality has been dropped from the XML protocol and should no longer be used. All input values should be rounded to the magnitude that the particular model expects. For detail on what these magnitudes are, please refer to the respective model documentation. Further use of the MULTIPLIER attribute will produce incorrect results. RiskCalc External Integration Specification.doc 7 of 18 Last Updated 24-Sep-07

8 Example Operation Input The following is an example of the syntax that would be used to invoke the Risk Calculation function within the Private Firm Risk Model: <OPERATION MODEL= PRV SUBMODEL= NAMR FUNCTION= PDCLC > <ARGUMENT-LIST> <ARGUMENT TYPE= CurrAssets >1500</ARGUMENT> <ARGUMENT TYPE= Inventory >500</ARGUMENT> <ARGUMENT TYPE= CurrLiabilities >750</ARGUMENT> <ARGUMENT TYPE= NetIncome >250</ARGUMENT> <ARGUMENT TYPE= EBIT >100</ARGUMENT> <ARGUMENT TYPE= Sales >150</ARGUMENT> <ARGUMENT TYPE= FiscalYear >1999</ARGUMENT> </ARGUMENT-LIST> XML Output Syntax Basic Output Structure The overall structure of the XML syntax used by the Integration Interface for model output is as follows: <RISKCALC-OUT> <AUTHENTICATION> <USERID> </USERID> </AUTHENTICATION> <OPERATION-LIST> <OPERATION MODEL= SUBMODEL= VERSION= MODELVERSION= FUNCTION= > <ARGUMENT-LIST> <ARGUMENT TYPE= > </ARGUMENT> <ARGUMENT TYPE= > </ARGUMENT> </ARGUMENT-LIST> <ERROR-CODE> </ERROR-CODE> <ERROR-EX> </ERROR-EX> <OUTPUT-LIST> <OUTPUT TYPE= > </OUTPUT> <OUTPUT TYPE= > </OUTPUT> </OUTPUT-LIST> <EDFNOTES> < > </EDFNOTES> <OPERATION> </OPERATION-LIST> </RISKCALC-OUT> Note: grayed text identifies features specific to version 3.1 models. RiskCalc External Integration Specification.doc 8 of 18 Last Updated 24-Sep-07

9 <RISKCALC-OUT> Header All of the data returned from a batch RiskCalc transaction is enclosed within the <RISKCALC-OUT> tag. <RISKCALC-OUT> </RISKCALC-OUT> Authentication Section The authentication section contains the User ID that was used when the batch was submitted. The transactions will have been billed to the account of the user whose ID matches the data returned in the <USERID> tag. <AUTHENTICATION> <USERID>moodys</USERID> </AUTHENTICATION> Operation List Section The Operation List section encloses the output values of a batch of operations. The results from each individual transaction are contained within <OPERATION> tags and all of these are contained within the <OPERATION-LIST> tag. The body of the <OPERATION> section is described in the next section. <OPERATION-LIST> <OPERATION> The results of the first operation <OPERATION> The results of the second operation And so on </OPERATION-LIST> Operation Section The Operation section contains all of the returned data from a specific request to the mathematical model. It indicates which model and submodel were used, the version of the model, the function called within the model, an error code, and all the output values from the operation. Note that if an error code associated with a failure mode is returned in the <ERROR-CODE> tag, there may not be output values. <OPERATION MODEL= ModelName SUBMODEL= SubModelName VERSION= VersionNumber FUNCTION= FunctionName > <ARGUMENT-LIST> <ARGUMENT TYPE= Type1 >Arg1</ARGUMENT> <ARGUMENT TYPE= Type2 >Arg2</ARGUMENT> More inputs </ARGUMENT-LIST> <ERROR-CODE>Error</ERROR-CODE> <OUTPUT-LIST> <OUTPUT TYPE= Type1 >Out1</OUTPUT> <OUTPUT TYPE= Type2 >Out2</OUTPUT> More outputs </OUTPUT-LIST> RiskCalc External Integration Specification.doc 9 of 18 Last Updated 24-Sep-07

10 MODEL Attribute The MODEL Attribute contains the model identifier of the model used in the operation. This will be the same value as that which was requested at input time. Refer to the MODEL attribute section above and the respective model documents for a list of the model ID codes and their meaning. SUBMODEL Attribute The SUBMODEL attribute contains the submodel identifier of the submodel used in the operation. This will be the same value as that which was requested at input time. Refer to the SUBMODEL attribute section above and the respective model documents for a list of the submodel ID codes and their meaning. VERSION Attribute The VERSION attribute indicates the version of the model that was used to perform the given operation. MODELVERSION Attribute Implemented only in RiskCalc v3.1 Models The MODELVERSION attribute provides additional information defining the version of the analytical engine that was used to perform the given operation. This attribute is for informational purpose only. FUNCTION Attribute The FUNCTION attribute contains the function identifier of the function used in the operation. This will be the same value as that which was requested at input time. Refer to the FUNCTION attribute section above and the respective model documents for a list of the function ID codes and their meaning. <ERROR-CODE> Tag The <ERROR-CODE> tag contains a value that indicates the success or failure mode of the given operation according to the following table: Error Code Description v1.x Models V3.1 Models 0 Success 1 XML Input does not conform to the DTD. 2 XML Parsing Error 3 Malformed XML Error 4 Error Building XML Response 5 Feature Failure Error 10 Unknown Error 11 Unspecified Error RiskCalc External Integration Specification.doc 10 of 18 Last Updated 24-Sep-07

11 20 Malformed Operation 21 Account not authorized 30 Requested model unavailable 31 Requested submodel unavailable 32 Requested version unavailable 33 Requested function unavailable 34 Insufficient input arguments 35 Currency unavailable 37 Invalid argument value 40 System components unavailable 51 Site Framework Unavailable 52 Authentication Failed 54 Transaction Failed RiskCalc Error Codes <ERROR-EX> Tag The <ERROR-EX> tag contains extra error information in human-readable form for debugging purposes. The text contained in this tag will give a description of what errors were encountered. This tag will only be present when extra error information is provided by the system. Function Outputs <ARGUMENT-LIST> Tag The entire list of model input values are echoed back out in the <ARGUMENT-LIST> section. No indication is made as to whether the argument was used in the calculation or not. <OUTPUT-LIST> Tag All of the model output values are contained within the <OUTPUT-LIST> tag. Each output value within the output list is contained in an <OUTPUT> tag as described under the section <OUTPUT> Tag below. <OUTPUT> Tag Each individual output value is designated with an <OUTPUT> tag. The type of the output value is specified in the TYPE= attribute of the <OUTPUT> tag. Output types are model-specific and are listed in the respective model document. The <OUTPUT> tag has the attributes listed in the table at right which are output by the model as needed. <EDFNOTES> Tag Implemented only in RiskCalc v3.1 Models This element will contain a collection of tags defining additional information associated to the requested function. Consult the RiskCalc External Model Specification for different tags and values that may be returned for the specific model. RiskCalc External Integration Specification.doc 11 of 18 Last Updated 24-Sep-07

12 Example Operation Output The following is an example of the syntax of the XML file that would be returned when the user invoked the Risk Calculation function within the Private Firm Risk Model: <RISKCALC-OUT> <AUTHENTICATION> <USERID>Moodys</USERID> </AUTHENTICATION> <OPERATION-LIST> <OPERATION MODEL= PRV SUBMODEL= NAMR VERSION= 1.0 FUNCTION= PDCLC > <ARGUMENT-LIST> <ARGUMENT TYPE= Verbose >0</ARGUMENT> <ARGUMENT TYPE= FiscalYear >1999</ARGUMENT> <ERROR-CODE>0</ERROR-CODE> <OUTPUT-LIST> <OUTPUT TYPE= 1YrPD >0.92</OUTPUT> </OUTPUT-LIST> </OPERATION-LIST> </RISKCALC-OUT> RiskCalc External Integration Specification.doc 12 of 18 Last Updated 24-Sep-07

13 Appendix A Error Conditions Error conditions specific to the operation section of the XML document are documented above in the section titled, <ERROR-CODE> Tag. This appendix documents errors that can occur which prevent the batch from being submitted. When errors of this level occur, the returned XML text will look like the following: <RISKCALC-OUT> <ERROR-CODE> </ERROR-CODE> <ERROR-EX> </ERROR-EX> </RISKCALC-OUT> The error code number is contained in the <ERROR-CODE> element and if extra explanation is available, it is contained in the <ERROR-EX> element. Errors Code Details Code 1 Malformed XML This indicates that the XML does not conform to the DTD specifications required for input. Code 2 Parser Error An error has occurred related to the XML parser. This is typically a server error generated if an instance of the MSXML parser could not be instantiated. Code 3 Malformed XML Error An error has occurred related to parsing the user supplied XML document. This is typically caused when an XML document is provided that does not adhere to the rules of well-formed XML documents. Code 4 Error Building XML Response This error is generated if an issue is encountered communicating with the model or constructing different sections of the XML response. Code 5 Feature Failure Error An error associated with a feature has occurred. This is typically caused when a client supplied request is inconsistent in the current context (e.g. Desktop limited modes of operation for v3.1 models) or an error occurs in a supporting feature subsystem (e.g. Industry sector code translations). Code 10 Unknown Error This indicates that an issue occurred preventing the completion of the operation. Code 11 Unspecified Error This indicates that an error related to the server configuration has occurred. Code 20 Malformed Operation This error indicates that an upstream component of the RiskCalc architecture has detected an issue with the request. Code 21 Account not authorized This error indicates that the account does not have a subscription to access the requested service. Code 30 Requested model unavailable An error generated when the requested model cannot be instantiated. This is generally cause by an invalid value defined in the Model attribute. RiskCalc External Integration Specification.doc 13 of 18 Last Updated 24-Sep-07

14 Code 31 Requested submodel unavailable An error generated when the requested submodel cannot be instantiated. This is generally cause by an invalid value defined in the SubModel attribute. Code 32 Requested version unavailable An error generated when the requested version of the model/submodel cannot be instantiated. This is generally cause by an invalid value defined in the Version attribute. Code 33 Requested function unavailable An error generated when the requested function is not supported by the model/submodel. This is generally cause by an invalid value defined in the Function attribute. Code 34 Insufficient arguments An infrastructure error has occurred executing the operation. Code 35 Currency unavailable (Version 3.1 Models) An error associated with the requested currency has occurred. This is typically caused when the specified currency attribute is not supported by the model. Code 37 Invalid argument value (Version 3.1 Models) An error associated with the input requirement has been identified. This is typically caused when the request contains one or more inputs that violate the criteria defined in the models External Model Integration Specification (e.g. using nonnumeric formatting for inputs such as fractional time period). Code 40 System components unavailable An error was generated while attempting to process the request. This is a server error typically caused when a deployment issue has occurred. Code 51 Site Framework Unavailable An infrastructure error has occurred executing the operation. Code 52 Authentication Failed Error generated when the user ID and password cannot be reconciled against the authentication/transaction management system. Code 54 Transaction Failed An infrastructure error has occurred executing the operation. This is a server generated error if access to the authentication/transaction management system cannot be obtained. RiskCalc External Integration Specification.doc 14 of 18 Last Updated 24-Sep-07

15 Appendix B Data Type Definitions Input Format <!ELEMENT RISKCALC ( AUTHENTICATION OPERATION-LIST ) > <!ELEMENT AUTHENTICATION (USERID PASSWORD) > <!ELEMENT USERID ( #PCDATA ) > <!ELEMENT PASSWORD ( #PCDATA ) > <!ELEMENT OPERATION-LIST ( OPERATION+ ) > <!ELEMENT OPERATION ( ARGUMENT-LIST ) > <!ATTLIST OPERATION MODEL #PCDATA #REQUIRED SUBMODEL #PCDATA #REQUIRED VERSION #PCDATA #IMPLIED FUNCTION #PCDATA #REQUIRED > <!ELEMENT ARGUMENT-LIST ( ARGUMENT* ) > <!ATTLIST ARGUMENT-LIST CURRENCY #PCDATA #IMPLIED > <!ELEMENT ARGUMENT ( #PCDATA ) > <!ATTLIST ARGUMENT TYPE #PCDATA #REQUIRED DATECODE #PCDATA #IMPLIED > RiskCalc External Integration Specification.doc 15 of 18 Last Updated 24-Sep-07

16 Output Format <!ELEMENT RISKCALC-OUT ( AUTHENTICATION OPERATION-LIST ) > <!ELEMENT AUTHENTICATION ( USERID ) > <!ELEMENT USERID ( #PCDATA ) > <!ELEMENT OPERATION-LIST ( OPERATION+ ) > <!ELEMENT OPERATION ( ARGUMENT-LIST ERROR-CODE OUTPUT-LIST ) > <!ATTLIST OPERATION MODEL #PCDATA #REQUIRED SUBMODEL #PCDATA #REQUIRED VERSION #PCDATA #IMPLIED FUNCTION #PCDATA #REQUIRED > <!ELEMENT ARGUMENT-LIST ( ARGUMENT* ) > <!ATTLIST ARGUMENT-LIST CURRENCY #PCDATA #IMPLIED > <!ELEMENT ERROR-CODE ( #PCDATA ) > <!ELEMENT OUTPUT-LIST ( ARGUMENT* ) > <!ELEMENT OUTPUT ( #PCDATA ) > <!ATTLIST OUTPUT TYPE #PCDATA #REQUIRED CURRENCY #PCDATA #IMPLIED DATECODE #PCDATA #IMPLIED > RiskCalc External Integration Specification.doc 16 of 18 Last Updated 24-Sep-07

17 Appendix C Sample Source Code The following is a sample Visual Basic subroutine for submitting and receiving XML over HTTP using Microsoft s MSXML objects. Private Sub SendToWebServer(ByVal strphrase As String) On Error GoTo SendToWebServer_Error ' Error Handler Dim objsendxmldom As New MSXML.DOMFreeThreadedDocument ' XML Document we are sending Dim objreceivexmldom As New MSXML.DOMFreeThreadedDocument ' XML Document we get back Dim objxmlhttp As New MSXML.XMLHTTPRequest ' Object to Post the data to ASP Dim objxmlnode As MSXML.IXMLDOMNode ' Help read the response ' Load the document using a string - rather than build it with the DOM (sample shortcut) With objsendxmldom.async = False.loadXML "<RISKCALC> </RISKCALC>" End With ' Send the XML DOM using a POST - note async is OFF With objxmlhttp.open "POST", " False.send objsendxmldom End With ' Receive the Document and Parse the Response With objreceivexmldom.async = False.loadXML objxmlhttp.responsetext End With strstring = objxmlhttp.responsetext This is the query string to be processed by RiskCalc This contains the URN of the RiskCalc Server. Contact Moody s for information about what URN you should be using. Exit Sub SendToWebServer_Error: ' Error Handler MsgBox "An Error Has Occured in SendToWebServer" End Sub The server s response can be accessed from the responsetext attribute of the objxmlhttp object. RiskCalc External Integration Specification.doc 17 of 18 Last Updated 24-Sep-07

18 Revision History 24-Sept-07 Major update to the document to define the decomposition of information into the RiskCalc External Model Specification, eliminate references to the public company interfaces, and include references to v3.1 model structure and error codes. 30-Aug-02 (interim release) Removed MULTIPLIER attribute from <ARGUMENT-LIST> and <ARGUMENT> tags. This attribute is no longer supported. References to the External Model Document have been changed to references to the respective model document due to the fact that model information is now split up into separate documents. 8-Oct-01 Updated the HTTP Protocol section to match what happens in the production system. Pre-release disclaimers removed (finally). Sassy new cover page 9-Mar-01 Changed all EDF references PD. 20-Oct-00 Added error messages pertaining to system availability problems. 19-Sep-00 Updated HTTP Protocol section to more closely match what is expected in the released version. Assorted typographic corrections Updated Appendix B with correct DTDs Added Appendix C with sample VB source code 10-Aug-00 Changed all attribute TYPE values to use mixed upper/lower case. Consolodated the <MODEL>, <SUBMODEL>, <VERSION> and <FUNCTION> tags into attributes of the <OPERATION> tag. Removed CURRENCY attribute from input and output attributes. All models assume local currency for the region the model is valid for Added the concept of Output Vectors to handle situations where multiple data values are returned for a single output type. Removed Best Model, Best Submodel and Default Function concepts pending further definition of these features. Added Appendix A to discuss high-level fatal error conditions. 02-Jul-00 Added the XML over HTTP section. Capitalized all tags (I like this better). Added Input and Output DTDs (but they still need work) 30-May-00 The model-specific portion of this document was removed and made into its own document. All references to that content in this document have been updated, accordingly. 10-Apr-00 Initial Version by Kurt Schweitzer RiskCalc External Integration Specification.doc 18 of 18 Last Updated 24-Sep-07

Moody s RiskCalc External Model Specification:

Moody s RiskCalc External Model Specification: Moody's Moody s RiskCalc External Model Specification: Last Updated: March 21, 2008 Contact Phone South Bend Robert Weiss 574.472.5764 Copyright 2002 by Moody s Investors Service, Inc., 99 Church Street,

More information

Moody s RiskCalc Technology White Paper

Moody s RiskCalc Technology White Paper Moody's Moody s RiskCalc Technology White Paper Last Updated: March 13, 2003 Contact Phone South Bend Kurt Schweitzer 574.472.5734 Copyright 2002 by Moody s Investors Service, Inc., 99 Church Street, New

More information

Online Services User Agreement Revised April 2017

Online Services User Agreement Revised April 2017 Online Services User Agreement Revised April 2017 UBS Financial Services Inc. Online Services User Agreement Revised April 2017 1. Initial Acceptance of Terms By completing the registration process, you

More information

Achieve an Auditable and Repeatable Stress Testing Process using Scenario Analyzer. JOY HART, DIRECTOR and SAMIA HUSAIN, ASSISTANT DIRECTOR

Achieve an Auditable and Repeatable Stress Testing Process using Scenario Analyzer. JOY HART, DIRECTOR and SAMIA HUSAIN, ASSISTANT DIRECTOR Achieve an Auditable and Repeatable Stress Testing Process using Scenario Analyzer JOY HART, DIRECTOR and SAMIA HUSAIN, ASSISTANT DIRECTOR OCTOBER 2015 Agenda 1. Stress Testing Introduction and Regulatory

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

CA File Master Plus. Release Notes. Version

CA File Master Plus. Release Notes. Version CA File Master Plus Release Notes Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT TERMS & CONDITIONS www.karnevalkings.com (the "Site") is a website and online service owned and operated by the ViisTek Media group of companies (collectively known as "Karnevalkings.com", "we," "group",

More information

Additional License Authorizations for HPE OneView for Microsoft Azure Log Analytics

Additional License Authorizations for HPE OneView for Microsoft Azure Log Analytics Additional License Authorizations for HPE OneView for Microsoft Azure Log Analytics Product Use Authorizations This document provides Additional License Authorizations for HPE OneView for Microsoft Azure

More information

Entrust SSL Web Server Certificate Subscription Agreement

Entrust SSL Web Server Certificate Subscription Agreement Entrust SSL Web Server Certificate Subscription Agreement ATTENTION - READ CAREFULLY: THIS SUBSCRIPTION AGREEMENT (THIS "AGREEMENT") IS A LEGAL CONTRACT BETWEEN THE PERSON, ENTITY, OR ORGANIZATION NAMED

More information

QNB Bank-ONLINE AGREEMENT

QNB Bank-ONLINE AGREEMENT This is an Agreement between you and QNB Bank ("QNB"). It explains the rules of your electronic access to your accounts through QNB Online. By using QNB-Online, you accept all the terms and conditions

More information

Bar Code Discovery. Administrator's Guide

Bar Code Discovery. Administrator's Guide Bar Code Discovery Administrator's Guide November 2012 www.lexmark.com Contents 2 Contents Overview...3 Configuring the application...4 Configuring the application...4 Configuring Bar Code Discovery...4

More information

Entrust WAP Server Certificate Relying Party Agreement

Entrust WAP Server Certificate Relying Party Agreement Entrust WAP Server Certificate Relying Party Agreement The WAP/WTLS specification v1.1 does not provide a means for certificate revocation checking. The following Relying Party Agreement" provides further

More information

A Survey of Regression Methods for Proxy Functions

A Survey of Regression Methods for Proxy Functions MARCH 2014 ENTERPRISE RISK SOLUTIONS B&H RESEARCH INSURANCE ERS Douglas McLean Ph.D David Redfern Ph.D Kate Pyper Moody's Analytics Research Contact Us Global +44.131.625.7027 clientservices.barrhibb@moodys.com

More information

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding)

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) CLAUSE 13 ON-LINE BIDDING 13.1 ON-LINE BIDDING.1 Definitions: Owner means the party and/or their agent designated to receive on-line

More information

Deutsche Bank Credit. Credit User guide.

Deutsche Bank Credit. Credit User guide. Deutsche Bank Credit Credit User guide http://autobahn.db.com 2 Autobahn is Deutsche Bank s award-winning electronic distribution service. Since 1996, Autobahn has been connecting clients to Deutsche Bank

More information

TERMS OF USE. 1.3 This Site is intended for personal use only. Any commercial use without the prior written consent of Eretz Hemdah is prohibited.

TERMS OF USE. 1.3 This Site is intended for personal use only. Any commercial use without the prior written consent of Eretz Hemdah is prohibited. TERMS OF USE 1. General 1.1 The Eretz Hemdah organization and the Eretz Hemdah higher education institute for Jewish studies in Jerusalem and/or any of its representatives ( Eretz Hemdah or the Operator

More information

INTERNET ACCESS SERVICE AGREEMENT PLEASE READ CAREFULLY

INTERNET ACCESS SERVICE AGREEMENT PLEASE READ CAREFULLY INTERNET ACCESS SERVICE AGREEMENT PLEASE READ CAREFULLY Plains Communication Services ( PCS ), LLC and Plainstel.com provides its subscribers with access to the Internet only on the terms and conditions

More information

The use of Workbench Services and INFORM Services are governed by and subject to these Electronic Access Terms and Conditions ( EATCs ).

The use of Workbench Services and INFORM Services are governed by and subject to these Electronic Access Terms and Conditions ( EATCs ). ELECTRONIC ACCESS TERMS AND CONDITIONS (as of December 1, 2009) The use of Workbench Services and INFORM Services are governed by and subject to these Electronic Access Terms and Conditions ( EATCs ).

More information

End User License Agreement

End User License Agreement End User License Agreement Kyocera International, Inc. ( Kyocera ) End User License Agreement. CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS ( AGREEMENT ) BEFORE USING OR OTHERWISE ACCESSING THE SOFTWARE

More information

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS INTRODUCTION: Before the California State Teachers Retirement System (hereinafter "CalSTRS," "We," or "Us") will provide services found at mycalstrs.com (the

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

The Travel Tree Terms and Conditions

The Travel Tree Terms and Conditions The Travel Tree Terms and Conditions Please read the following Terms & Conditions carefully before using this site. Use of this site indicates acceptance of these Terms and Conditions. The following terms

More information

PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL

PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL Last Modified: 3/12/2018 These terms and conditions ( Terms and Conditions ) are a legal agreement between you and PlainsCapital Bank that

More information

FirePoint 8. Setup & Quick Tour

FirePoint 8. Setup & Quick Tour FirePoint 8 Setup & Quick Tour Records Management System Copyright (C), 2006 End2End, Inc. End2End, Inc. 6366 Commerce Blvd #330 Rohnert Park, CA 94928 PLEASE READ THIS LICENSE AND DISCLAIMER OF WARRANTY

More information

Balance Point Technologies, Inc. MAX Toolbar for Microsoft Dynamics GP. For MAX (SQL Server) User Guide

Balance Point Technologies, Inc.  MAX Toolbar for Microsoft Dynamics GP. For MAX (SQL Server) User Guide Balance Point Technologies, Inc. www.maxtoolkit.com MAX Toolbar for Microsoft Dynamics GP For MAX (SQL Server) User Guide MAX Toolbar for Microsoft Dynamics GP Copyright Manual copyright 2010 Balance Point

More information

Terms Of Use AGREEMENT BETWEEN USER AND DRAKE MODIFICATION OF THESE TERMS OF USE LINKS TO THIRD PARTY WEB SITES USE OF COOKIES

Terms Of Use AGREEMENT BETWEEN USER AND DRAKE MODIFICATION OF THESE TERMS OF USE LINKS TO THIRD PARTY WEB SITES USE OF COOKIES Terms Of Use AGREEMENT BETWEEN USER AND DRAKE This website and other related websites and mobile applications (collectively referred to as "Sites") comprise various web pages and services operated by Drake

More information

PLEASE CAREFULLY REVIEW THESE TERMS AND CONDITIONS OF USE BEFORE USING THIS SITE.

PLEASE CAREFULLY REVIEW THESE TERMS AND CONDITIONS OF USE BEFORE USING THIS SITE. TERMS OF USE PLEASE CAREFULLY REVIEW THESE TERMS AND CONDITIONS OF USE BEFORE USING THIS SITE. ANY USE OF THIS WEBSITE CREATES A BINDING AGREEMENT TO COMPLY WITH THESE TERMS AND CONDITIONS. IF YOU DO NOT

More information

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS Introduction This document sets forth the terms and conditions ("Terms and Conditions") governing your use of the MeridianHealth.com Web site ("Web Site")

More information

INCLUDING MEDICAL ADVICE DISCLAIMER

INCLUDING MEDICAL ADVICE DISCLAIMER Jordan s Guardian Angels Terms and Conditions of Use INCLUDING MEDICAL ADVICE DISCLAIMER Your use of this website and its content constitutes your agreement to be bound by these terms and conditions of

More information

Replication Monitor User s Guide

Replication Monitor User s Guide Replication Monitor User s Guide Version 6.0.2 (041209) DOC Marimba Product Line Copyright 1996 2004 BMC Software, Inc. All rights reserved. This publication is protected by copyright and international

More information

VMware vcenter Log Insight Manager. Deployment Guide

VMware vcenter Log Insight Manager. Deployment Guide VMware vcenter Log Insight Manager Deployment Guide VERSION: 6.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies

More information

Balance Point Technologies, Inc. MAX Toolbar for Microsoft Dynamics GP V2013. User Guide

Balance Point Technologies, Inc.   MAX Toolbar for Microsoft Dynamics GP V2013. User Guide Balance Point Technologies, Inc. MAX Toolbar for Microsoft Dynamics GP V2013 User Guide MAX Toolbar for Microsoft Dynamics GP V2013 Copyright Manual copyright 2013 Balance Point Technologies, Inc. All

More information

IBM Algo Risk Content on Cloud

IBM Algo Risk Content on Cloud Service Description IBM Algo Risk Content on Cloud This Service Description describes the Cloud Service IBM provides to Client. Client means the contracting party and its authorized users and recipients

More information

E- SIGNATURE AND ELECTRONIC DISCLOSURES AGREEMENT. Agreement to Conduct Transactions by Electronic Means

E- SIGNATURE AND ELECTRONIC DISCLOSURES AGREEMENT. Agreement to Conduct Transactions by Electronic Means CREDIT UNION Version Terms and Conditions Gulf Winds Federal Credit Union P2P Service E- SIGNATURE AND ELECTRONIC DISCLOSURES AGREEMENT You are signing up to use the Gulf Winds Federal Credit Union ( Credit

More information

SIMS TERMS AND CONDITIONS OF USE AGREEMENT

SIMS TERMS AND CONDITIONS OF USE AGREEMENT SIMS TERMS AND CONDITIONS OF USE AGREEMENT 1. These Terms and Conditions ("the Terms and Conditions") govern your ("the User") use of the Website and Web application and the information thereon, known

More information

OMA-ETS-DL-OTA-v1_ a Page 1 (24)

OMA-ETS-DL-OTA-v1_ a Page 1 (24) OMA-ETS-DL-OTA-v1_0-20040317-a Page 1 (24) Enabler Test Specification for Download 1.0 Version 1.0, 17-Mar-2004 Open Mobile Alliance OMA-ETS-DL-OTA-v1_0-20040317-a OMA-ETS-DL-OTA-v1_0-20040317-a Page 2

More information

Terms and Conditions P2P Service E-Signature and Electronic Disclosures Agreement

Terms and Conditions P2P Service E-Signature and Electronic Disclosures Agreement You are signing up to use the P2P service powered by Acculynk ( Service ) that allows you to send funds to another person. This ( E-Sign Agreement ) applies to all communications, documents, disclosures

More information

SDLC INTELLECTUAL PROPERTY POLICY

SDLC INTELLECTUAL PROPERTY POLICY SDLC INTELLECTUAL PROPERTY POLICY Last Revised: 11/14/17 1. Introduction. This Intellectual Property Policy ( Policy ) governs intellectual property rights of the SDL Consortium ( SDLC ) and its Members

More information

UBS Implementation Guidelines

UBS Implementation Guidelines UBS Implementation Guidelines DFÜ Agreement of Deutsche Kreditwirtschaft for Cash Management Reports camt.052.001.02 - DK Version 3.0 UBS Version 1.0 March 2017 Table of Contents 1. Cash Management Reports

More information

Preface. Audience. Cisco IOS Software Documentation. Organization

Preface. Audience. Cisco IOS Software Documentation. Organization This preface describes the audience, organization, and conventions of this publication, and provides information on how to obtain related documentation. Cisco documentation and additional literature are

More information

Mobile Banking and Mobile Deposit Terms & Conditions

Mobile Banking and Mobile Deposit Terms & Conditions Mobile Banking and Mobile Deposit Terms & Conditions PLEASE CAREFULLY REVIEW THESE TERMS AND CONDITIONS BEFORE PROCEEDING: This Mobile Banking and Mobile Deposit Addendum ( Addendum ) to the Old National

More information

MQ Port Scan Installation and Operation Manual

MQ Port Scan Installation and Operation Manual MQ Port Scan Installation and Operation Manual Capitalware Inc. Unit 11, 1673 Richmond Street, PMB524 London, Ontario N6G2N3 Canada sales@capitalware.com http://www.capitalware.com MQPS Installation and

More information

Core Engine. R XML Specification. Version 5, February Applicable for Core Engine 1.5. Author: cappatec OG, Salzburg/Austria

Core Engine. R XML Specification. Version 5, February Applicable for Core Engine 1.5. Author: cappatec OG, Salzburg/Austria Core Engine R XML Specification Version 5, February 2016 Applicable for Core Engine 1.5 Author: cappatec OG, Salzburg/Austria Table of Contents Cappatec Core Engine XML Interface... 4 Introduction... 4

More information

Product Terms and Conditions - Hosted Exchange

Product Terms and Conditions - Hosted Exchange Product Terms and Conditions - Hosted Exchange 1. INTERPRETATION 1.1 Unless the context clearly indicates the contrary, any term defined in the General Terms and Conditions when used herein, shall bear

More information

1. License Grant; Related Provisions.

1. License Grant; Related Provisions. IMPORTANT: READ THIS AGREEMENT CAREFULLY. THIS IS A LEGAL AGREEMENT BETWEEN AVG TECHNOLOGIES CY, Ltd. ( AVG TECHNOLOGIES ) AND YOU (ACTING AS AN INDIVIDUAL OR, IF APPLICABLE, ON BEHALF OF THE INDIVIDUAL

More information

Distributed Intelligent Capture. Integration Guide

Distributed Intelligent Capture. Integration Guide Distributed Intelligent Capture Integration Guide July 2014 www.lexmark.com Contents 2 Contents Overview... 3 Getting started... 4 Understanding the integration process... 4 Configuring the engines...

More information

RDS Employee Access Module User Guide

RDS Employee Access Module User Guide RDS Employee Access Module User Guide This manual is designed to help you set up your Employee Access account. Create New Account - As Employee Disclaimer of Warranties and Limitation of Liabilities Regional

More information

FIA Electronic Give-Up Agreement System (EGUS) Version 2.6

FIA Electronic Give-Up Agreement System (EGUS) Version 2.6 FIA Electronic Give-Up Agreement System (EGUS) Version 2.6 User Guide 18 January 2010 Copyright Unpublished work 2007-2010 Markit Group Limited This work is an unpublished, copyrighted work and contains

More information

TERMS OF SERVICE. Maui Lash Extensions All Rights Reserved.

TERMS OF SERVICE. Maui Lash Extensions All Rights Reserved. TERMS OF SERVICE Electronic Communication: When you visit our website or send e-mails to us, you are communicating with us electronically. You consent to receive communications from us electronically.

More information

TERMS OF SERVICE. Hire Torque Tools Victoria ABN: =======================================================================

TERMS OF SERVICE. Hire Torque Tools Victoria ABN: ======================================================================= Hire Torque Tools Victoria ABN: 21 329 288 134 240 Smiths Gully Rd Smiths Gully 3760 Ph: (03) 9710 1386 M: 0468 345 078 Email: info@httv.com.au Web: www.httv.com.au =======================================================================

More information

Terms & Conditions governing Samsung Smartphone Bundle Offer ( Offer ):

Terms & Conditions governing Samsung Smartphone Bundle Offer ( Offer ): Terms & Conditions governing Samsung Smartphone Bundle Offer ( Offer ): THIS DOCUMENT IS AN ELECTRONIC RECORD IN TERMS OF THE INFORMATION TECHNOLOGY ACT, 2000 AND RULES THERE UNDER AS APPLICABLE. THIS

More information

SafeNet Authentication Service (SAS) Service Provider Billing and Reporting Guide

SafeNet Authentication Service (SAS) Service Provider Billing and Reporting Guide SafeNet Authentication Service (SAS) Service Provider Billing and Reporting Guide All information herein is either public information or is the property of and owned solely by Gemalto and/or its subsidiaries

More information

One Identity Manager 8.0. Administration Guide for Connecting to a Universal Cloud Interface

One Identity Manager 8.0. Administration Guide for Connecting to a Universal Cloud Interface One Identity Manager 8.0 Administration Guide for Connecting to a Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

FIRST BANK P2P Service Cent Terms and Conditions (Available via online or mobile banking)

FIRST BANK P2P Service Cent Terms and Conditions (Available via online or mobile banking) FIRST BANK P2P Service Cent Terms and Conditions (Available via online or mobile banking) You are signing up to use the FIRST BANK ( Bank ) P2P service (called cent ) powered by Acculynk that allows you

More information

Deutsche Bank Corporate Banking & Securities. TradeMatch. User Guide.

Deutsche Bank Corporate Banking & Securities. TradeMatch. User Guide. Deutsche Bank Corporate Banking & Securities TradeMatch User Guide http://autobahn.db.com 1 TradeMatch Autobahn is Deutsche Bank s award-winning electronic distribution service. Since 1996, Autobahn has

More information

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Export Controls Export laws and regulations of the United States

More information

Agreements & Contracts: Electronic Documents User Agreement CUSTOMER SERVICE SKOWHEGAN SAVINGS

Agreements & Contracts: Electronic Documents User Agreement CUSTOMER SERVICE SKOWHEGAN SAVINGS Agreements & Contracts: Electronic Documents User Agreement CUSTOMER SERVICE SKOWHEGAN SAVINGS 800.303.9511 CUSTSERV@SKOWSAVINGS.COM TABLE OF CONTENTS ELECTRONIC DELIVERY OF DOCUMENTS...3 SYSTEM REQUIREMENTS...3

More information

Interac e-transfer Terms and Conditions

Interac e-transfer Terms and Conditions Interac e-transfer Terms and Conditions 1. What the Words Mean: In this Interac e-transfer Terms and Conditions document (the Agreement ), please remember that: "I", "me", "my", you, ICICI Bank Customer

More information

Quick Data Loader. Balance Point Technologies, Inc. Quick Data Loader. User Guide. Certified MAX Integrator

Quick Data Loader. Balance Point Technologies, Inc.  Quick Data Loader. User Guide.  Certified MAX Integrator Balance Point Technologies, Inc. www.maxtoolkit.com Quick Data Loader User Guide 1 P a g e Copyright Manual copyright 2017 Balance Point Technologies, Inc. All Rights reserved. Your right to copy this

More information

FIREFLY SEND MONEY TERMS & CONDITIONS

FIREFLY SEND MONEY TERMS & CONDITIONS E-SIGNATURE AND ELECTRONIC DISCLOSURES AGREEMENT FIREFLY SEND MONEY TERMS & CONDITIONS You are signing up to use the Firefly Credit Union ( Credit Union ) P2P service powered by Acculynk that allows you

More information

CLSA DIRECT MARKET ACCESS SERVICES ANNEX

CLSA DIRECT MARKET ACCESS SERVICES ANNEX CLSA DIRECT MARKET ACCESS SERVICES ANNEX 1. Definitions and Interpretation 1.1 In this Direct Market Access Services Annex capitalised terms have the meaning given to them in the CLSA Asia-Pacific Terms

More information

Policies & Medical Disclaimer

Policies & Medical Disclaimer Policies & Medical Disclaimer Money Back Guarantee Heather Woodruff Nutrition proudly stands behind its programs. To help you feel comfortable we offer a Money-Back Guarantee* If you are not absolutely

More information

Terms and Conditions for External accounts Service

Terms and Conditions for External accounts Service Terms and Conditions for External accounts Service You must read these Terms and Conditions before using External accounts service. IMPORTANT INFORMATION External accounts service is an account aggregation

More information

LoadMaster VMware Horizon (with View) 6. Deployment Guide

LoadMaster VMware Horizon (with View) 6. Deployment Guide LoadMaster VMware Horizon (with View) 6 Deployment Guide VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the

More information

Purchase Order Management For Magento 1.x

Purchase Order Management For Magento 1.x Purchase Order Management For Magento 1.x User Guide - 9/10/2017 Section 1: Installation: 1) Turn off Magento's Compilation Mode - Check to see if Magento's compilation mode has been enabled. If it has,

More information

IEEE Electronic Mail Policy

IEEE Electronic Mail Policy IEEE Electronic Mail Policy 1. Policy Responsibility and related documents This policy is maintained by the IEEE Information Technology Strategy Committee (ITSC), with revisions submitted to the Board

More information

P2P Service Terms and Conditions. E-Signature & Electronic Disclosures Agreement

P2P Service Terms and Conditions. E-Signature & Electronic Disclosures Agreement P2P Service Terms and Conditions E-Signature & Electronic Disclosures Agreement You are signing up to use the Metro Employees Credit Union, P2P service that allows you to send funds to another person.

More information

MAX Workbench. Balance Point Technologies, Inc. MAX Workbench. User Guide. Certified MAX Integrator

MAX Workbench. Balance Point Technologies, Inc.  MAX Workbench. User Guide.  Certified MAX Integrator Balance Point Technologies, Inc. www.maxtoolkit.com MAX Workbench User Guide 1 P a g e Copyright Manual copyright 2017 Balance Point Technologies, Inc. All Rights reserved. Your right to copy this documentation

More information

Copyrights and Privacy Statement

Copyrights and Privacy Statement Copyrights and Privacy Statement Jesse James Hardscaping Authorization of Use Jesse James Hardscaping hereby authorizes any person to access this Website for informational purposes only. Jesse James Hardscaping

More information

HPE Education Services ESE (East and South Europe) Terms and Conditions

HPE Education Services ESE (East and South Europe) Terms and Conditions HPE Education Services ESE (East and South Europe) Terms and Conditions These terms and conditions govern the purchase of education services from Hewlett Packard Enterprise Company ( HPE ). 1. Definitions

More information

Avast Customer & Technical Support Policy

Avast Customer & Technical Support Policy Avast Customer & Technical Support Policy PLEASE READ THE TERMS AND CONDITIONS OF THIS SUPPORT POLICY ( SUPPORT POLICY ). THIS SUPPORT POLICY IS PROVIDED BY AVAST SOFTWARE s.r.o., A COMPANY DULY ORGANIZED

More information

European Market Infrastructure Regulation (EMIR)

European Market Infrastructure Regulation (EMIR) European Market Infrastructure Regulation (EMIR) User Guide Post Trade Portal: HSBC EMIR Delegated Reporting Service August 2016 Published: August 2016 1 Disclaimer This document is issued by HSBC Bank

More information

Online Privacy Notice

Online Privacy Notice Online Privacy Notice The National Foundation for Credit Counseling, Inc. (referred to as NFCC, we, or us ) respects your privacy and is committed to maintaining and using your information responsibly.

More information

Online Localization Service

Online Localization Service DEVELOPER EXPRESS INC DEVEXPRESS Copyright (C) 2011-2017 Developer Express Inc. IMPORTANT- READ CAREFULLY: This DEVELOPER EXPRESS INC ("DEVEXPRESS") End-User License Agreement ("EULA") is a legal agreement

More information

LP800 Loop Tester. Installation and Operation Manual

LP800 Loop Tester. Installation and Operation Manual LP800 Loop Tester Installation and Operation Manual DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY The information, recommendations, descriptions and safety notations in this document are based on

More information

Hitachi ID Identity and Access Management Suite TRIAL USE LICENSE AGREEMENT. between

Hitachi ID Identity and Access Management Suite TRIAL USE LICENSE AGREEMENT. between between Hitachi ID Systems, Inc. (hereinafter referred to as "HIDS", "we" and/or "us") and LICENSEE (see below) (hereinafter referred to as "LICENSEE" and/or "you".) (Please complete ALL fields below by

More information

THIS IS A CONTRACT BETWEEN YOU AND VEC (Village Emergency Center).

THIS IS A CONTRACT BETWEEN YOU AND VEC (Village Emergency Center). Terms and Conditions VEC Entity Terms and Conditions Updated: 01/22/18 GO TO THE EMERGENCY ROOM OF A LOCAL HOSPITAL OR DIAL 911 IMMEDIATELY IN THE EVENT OF AN EMERGENCY. THIS IS A CONTRACT BETWEEN YOU

More information

Cisco Unified Workforce Optimization

Cisco Unified Workforce Optimization Cisco Unified Workforce Optimization Quality Management Integration Guide for CAD and Finesse Version 10.5 First Published: June 2, 2014 Last Updated: September 15, 2015 THE SPECIFICATIONS AND INFORMATION

More information

KEPServerEx Client Connectivity Guide

KEPServerEx Client Connectivity Guide KEPServerEx Client Connectivity Guide For ObjectAutomation OAenterprise KTSM-00030 v. 1.03 Copyright 2005 Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND LIMITED WARRANTY The software accompanying

More information

Solar Eclipse Widgets and Menu Shortcuts. Release 9.0.5

Solar Eclipse Widgets and Menu Shortcuts. Release 9.0.5 Solar Eclipse Widgets and Menu Shortcuts Release 9.0.5 i Table Of Contents Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents,

More information

PDxxxxx {P/N} {Doc Description} PRELIMINARY PDS-104_SECURED_WEB_BROWSING_UG. PDS-104G - Secured web browsing certificate management.

PDxxxxx {P/N} {Doc Description} PRELIMINARY PDS-104_SECURED_WEB_BROWSING_UG. PDS-104G - Secured web browsing certificate management. PDS-104G - Secured web browsing certificate management User Guide TABLE OF CONTENTS PDS-104_SECURED_WEB_BROWSING_UG 1 INTRODUCTION...2 1.1 GENERAL... 2 1.2 ENFORCING SECURED WEB BROWSING... 2 1.3 SECURED

More information

Polycom RealPresence Platform Director

Polycom RealPresence Platform Director RELEASE NOTES 3.0.0 April 2016 3725-66007-002B Polycom RealPresence Platform Director Contents What s New in Release 3.0... 3 Polycom RealPresence Clariti Support... 3 Support for Appliance Edition...

More information

Person to Person (P2P) Services Terms and Conditions

Person to Person (P2P) Services Terms and Conditions Person to Person (P2P) Services Terms and Conditions These Terms of Use set forth the terms and conditions under which the Service is offered. The Service allows a Sender to transfer funds to a Recipient

More information

SafeNet Authentication Service. Service Provider Billing and Reporting Guide

SafeNet Authentication Service. Service Provider Billing and Reporting Guide SafeNet Authentication Service Service Provider Billing and Reporting Guide All information herein is either public information or is the property of and owned solely by Gemalto and/or its subsidiaries

More information

XEP-0206: XMPP Over BOSH

XEP-0206: XMPP Over BOSH 1 di 15 31/01/2011 19:39 XEP-0206: XMPP Over BOSH Abstract: Authors: Copyright: Status: Type: This specification defines how the Bidirectional-streams Over Synchronous HTTP (BOSH) technology can be used

More information

You may use the Service to either access, establish or change the following:

You may use the Service to either access, establish or change the following: Online Access Agreement June 18, 2015 (Revision date) I. Introduction This Online Access Agreement (this "Agreement") contains the terms that govern your use of the Participants' Private Area of the www.afmsagaftrafund.org

More information

Solar Eclipse Scheduler. Release 9.0

Solar Eclipse Scheduler. Release 9.0 Solar Eclipse Scheduler Release 9.0 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates

More information

Specific Terms And Conditions for hi!share International Prepaid Airtime Top- Up Value Added Service ( hi!share International Terms )

Specific Terms And Conditions for hi!share International Prepaid Airtime Top- Up Value Added Service ( hi!share International Terms ) Specific Terms And Conditions for hi!share International Prepaid Airtime Top- Up Value Added Service ( hi!share International Terms ) 1. Incorporation by Reference In addition to the General Terms, the

More information

epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS twitter.com/encorebusiness.com

epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS   twitter.com/encorebusiness.com epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS www.encorebusiness.com twitter.com/encorebusiness.com encore@encorebusiness.com Copyright Build Notes copyright 2018 Encore Business Solutions, Inc.

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2009 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

Priv ac y Policy. Last upda ted:

Priv ac y Policy. Last upda ted: Priv ac y Policy Last upda ted: 05.2014 This Privacy Policy describes the policies and procedures of ZET / Adrian Zingg / ZetApps and any subsidiaries and affiliated entities (together, Company, we or

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

Terms and Conditions. Although we intend to take all reasonable steps to prevent the introduction of

Terms and Conditions. Although we intend to take all reasonable steps to prevent the introduction of Terms and Conditions Our Privacy and Security Pledge to You as a Distributor: Your satisfaction with this website is important to us. Assuring the privacy and security of all of the information you share

More information

Product Manual Select Code Comcode Issue 8 January EasyView Software for the Galaxy Controller

Product Manual Select Code Comcode Issue 8 January EasyView Software for the Galaxy Controller Product Manual Select Code 193-104-105 Comcode 107488710 Issue 8 January 2008 EasyView Software for the Galaxy Controller Product Manual Select Code 193-104-105 Comcode 107488710 Issue 8 January 2008

More information

ABSOFT Corporation Software License Agreement. Specifically for IMSL FORTRAN 5.0 BUNDLED WITH FORTRAN COMPILERS FROM ABSOFT FOR WINDOWS OR OS X

ABSOFT Corporation Software License Agreement. Specifically for IMSL FORTRAN 5.0 BUNDLED WITH FORTRAN COMPILERS FROM ABSOFT FOR WINDOWS OR OS X ABSOFT Corporation Software License Agreement Specifically for IMSL FORTRAN 5.0 BUNDLED WITH FORTRAN COMPILERS FROM ABSOFT FOR WINDOWS OR OS X (March 2008) IMPORTANT - READ THIS ENTIRE LICENSE AGREEMENT

More information

One Identity Manager Administration Guide for Connecting to SharePoint Online

One Identity Manager Administration Guide for Connecting to SharePoint Online One Identity Manager 8.0.1 Administration Guide for Connecting to Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Migration Tool. Migration Tool (Beta) Technical Note

Migration Tool. Migration Tool (Beta) Technical Note Migration Tool (Beta) Technical Note VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo

More information

TechTarget Event Sponsorship Terms and Conditions

TechTarget Event Sponsorship Terms and Conditions TechTarget Event Sponsorship Terms and Conditions TechTarget, Inc. ( TechTarget ) and the company listed on the applicable Insertion Order(s) as the sponsor of the Event(s) ( Sponsor ) each agree that

More information

Ludlum Lumic Data Logger Software Manual Version 1.1.xx

Ludlum Lumic Data Logger Software Manual Version 1.1.xx Ludlum Lumic Data Logger Software Manual Version 1.1.xx Ludlum Lumic Data Logger Software Manual Version 1.1.xx Contents Introduction... 1 Software License Agreement... 2 Getting Started... 5 Minimum

More information