MultipleResponseItemOptions

Description

MultipleResponseItemOptions holds the ResponseItemOptions type, as well as an enumeration to determine if a service should stop on failure and send an error message or continue processing.

Parameters

Name Type Description
ResponseItemOptions Extension. See ResponseItemOptions. ResponseItemOptions extension base. Holds a name value pairing for future elements and enables you to limit the data returned in the response.
multiOption MultipleOption Enumeration element that holds the option to continue processing or stop when an error is encountered.

Usage

The MultipleResponseItemOptions contains the same functionality as ResponseItemOptions, but it also enables you to specify an enumeration value that determines if the service should continue processing or stop when an error is encountered.

You use the following parameters in ResponseItemOptions and the multiOption parameter to control service handling and the amount of data that is returned in the response:

XML

The following XML shows MultipleResponseItemOptions in the <urn:options> element of a typical call.

<urn:options>
    <urn:extraOption>
        <urn:name></urn:name>
        <urn:value></urn:value>
    </urn:extraOption>
    <urn:sections>SECTIONS-SPECIFIED</urn:sections>
    <urn:specifiedSections>SECTION:EXTENDED</urn:specifiedSections>
    </urn:limitedField>
    <urn:multiOption>CONTINUE-ON-FAILURE</urn:multiOption>
</urn:options>