Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
themeEclipse
<callbackProxySettings>\n      <
      <!-- Enable or disable the use of proxy for all callbacks. Values 1 (enabled) or 0 (disabled)-->\n      <enabled>0<
      <enabled>0</enabled>\n      <
      <!-- Address of the proxy server-->\n      <address><
      <address></address>\n      <
      <!-- Send all callbacks to local addresses without using proxy. Values 1 (bypass for local) or 0 (always use proxy)-->\n      <
      <!-- Local requests are identified by the lack of a period (.) in the URI, as in http://webserver/, or access the local server, including http://localhost, http://loopback, or http://127.0.0.1-->\n      <bypassProxyOnLocal>0<
      <bypassProxyOnLocal>0</bypassProxyOnLocal>\n      <networkCredentials>\n        <
      <networkCredentials>
        <!-- Domain for Credentials-->\n        <domain><
        <domain></domain>\n        <
        <!-- Username for Credentials-->\n        <username><
        <username></username>\n        <
        <!-- Password for Credentials. If password is not encrypted then remove the attribute enc-->\n        <password
        <password enc="sec2"></password>\n      <
      </networkCredentials>\n    <
    </callbackProxySettings>


The following placeholders are defined:

...

Code Block
languagejava
themeEclipse
  "CallbackConfiguration": {\n
    "CallbackUrl": "string",\n
    "StatusUpdateCallbackUrl": "string",\n
    "StepActionCallbackConfiguration": {\n
      "Url": "string",\n
      "ActionCallbackSelection": {\n
        "ConfirmTransactionCode": true,\n
        "DefaultEventType": true,\n
        "AgreementAccepted": true,\n
        "AgreementRejected": true,\n
        "RequestPrepareAuthenticationInformationSuccess": true,\n
        "PrepareAuthenticationSuccess": true,\n
        "AuthenticationFailed": true,\n
        "AuthenticationRejected": true,\n
        "AuthenticationSuccess": true,\n
        "ReAuthenticationFailed": true,\n
        "AuditTrailRequested": true,\n
        "AuditTrailXmlRequested": true,\n
        "CalledPage": true,\n
        "WhoIsInformation": true,\n
        "DocumentDownloaded": true,\n
        "FlattenedDocumentDownloaded": true,\n
        "AddedAnnotation": true,\n
        "AddedAttachment": true,\n
        "AppendedDocument": true,\n
        "FormsFilled": true,\n
        "ConfirmReading": true,\n
        "PageViewChanged": true,\n
        "SendTransactionCode": true,\n
        "PrepareSignWorkstepDocument": true,\n
        "SignWorkstepDocument": true,\n
        "UndoAction": true,\n
        "WorkstepCreated": true,\n
        "WorkstepFinished": true,\n
        "WorkstepRejected": true,\n
        "DisablePolicyAndValidityChecks": true,\n
        "EnablePolicyAndValidityChecks": true,\n
        "AppendFileToWorkstep": true,\n
        "AppendTasksToWorkstep": true,\n
        "SetOptionalDocumentState": true,\n
        "PreparePayloadForBatch": true\n
      }\n
    }\n
  },


Please note that if all event types are disabled the URL which was configured in the configuration will not get any callbacks.

...