Table of Contents

Search

  1. Preface
  2. Introduction to Informatica Address Verification (On-Premises)
  3. General Settings
  4. Input Parameters
  5. Process Parameters
  6. Address Enrichments
  7. Result Parameters
  8. Output Fields
  9. Assessment Codes and Return Codes
  10. Frequently Asked Questions

Developer Guide (On-Premises)

Developer Guide (On-Premises)

How Do I Retrieve the Result Status and Additional Information?

How Do I Retrieve the Result Status and Additional Information?

If you are using the C direct API, you can call the
AD_GetResultParameter()
function with the
ProcessStatus
value to retrieve the result status. If you are using the Java direct API, you can call the
m_oAO.getResultParameter("ProcessStatus")
function to retrieve the result status.
Retrieving the result status through the C direct API
char sResultParameters[32]; AD_GetResultParameter(hAOHandle,"ProcessStatus",sResultParameters, sizeof(sResultParameter));
To receive specific status of any address element result, call
AD_GetResultDataParameter()
with the required parameters. To receive details of address enrichments, call
AD_GetResultEnrichmentDataParameter()
.
Retrieving the result status through the Java direct API
System.out.println(m_oAO.getResultParameter("ProcessStatus"));
In C XML API, the
AD_GetResultXML()
function returns the entire result information without you specifying any parameter. However, some of the settings for the
Result
element in
Parameters.xml
might influence the details in the result output.

0 COMMENTS

We’d like to hear from you!