DAP4 Error Response: Difference between revisions

From OPeNDAP Documentation
⧼opendap2-jumptonavigation⧽
(Created page with "=== DAP4 Error Response === The DAP4 protocol returns error information using an Error response. If a request for any of the three basic responses cannot be completed then ...")
 
No edit summary
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
=== [[DAP4 Error Response]]  ===


The DAP4 protocol returns error information using an Error response. If a request for any of the three basic responses cannot be completed then an Error response is returned in its place.
The DAP4 protocol returns error information using an Error response. If a request for any of the three basic responses cannot be completed then an Error response is returned in its place.
 
=== Schema ===
The normative XML representation for the Error Response is defined by the following RELAX-NG schema.
The normative XML representation for the Error Response is defined by the following RELAX-NG schema.
<font size="2">
<source lang="xml">
<pre>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
<grammar xmlns="http://relaxng.org/ns/structure/1.0" xmlns:doc="http://www.example.com/annotation" datatypeLibrary="http://xml.opendap.org/datatypes/dap4" ns="http://xml.opendap.org/ns/DAP/4.0#">
                xmlns:doc="http://www.example.com/annotation"
    <start>
                datatypeLibrary="http://xml.opendap.org/datatypes/dap4"
        <ref name="errorresponse"/>
                ns="http://xml.opendap.org/ns/DAP/4.0#"
    </start>
                >
    <define name="errorresponse">
&lt;start&gt;
        <element name="Error">
  &lt;ref name="errorresponse"/&gt;
            <optional>
&lt;/start&gt;
                <element name="code">
&lt;define name="errorresponse"&gt;
                    <attribute name="protocol">
  &lt;element name="Error"&gt;
                        <data type="text"/>
    &lt;optional&gt;
                    </attribute>
      &lt;attribute name="httpcode"&gt;&lt;data type="dap4_integer"/&gt;&lt;/attribute&gt;
                    <data type="dap4_integer"/>
    &lt;/optional&gt;
                </element>
    &lt;optional&gt;
            </optional>
      &lt;interleave&gt;
            <optional>
        &lt;element name = "Message"&gt;&lt;text/&gt;&lt;/Message&gt;
                <interleave>
        &lt;element name = "Context"&gt;&lt;text/&gt;&lt;/Message&gt;
                    <element name="Message">
        &lt;element name = "OtherInformation"&gt;&lt;text/&gt;&lt;/Message&gt;
                        <text/>
      &lt;/interleave&gt;
                    </element>
    &lt;/optional&gt;
                    <element name="Context">
  &lt;/element&gt;
                        <text/>
&lt;/define&gt;
                    </element>
</pre>
                    <element name="OtherInformation">
</font>
                        <text/>
 
                    </element>
The Error element has one optional attribute: the ''httpcode'' which is a standard HTTP protocol return code indicating the general class of error. When possible, this code should match the return code in the HTTP headers for the response.
                </interleave>
            </optional>
        </element>
    </define>
</grammar>
</source>


The body of the &lt;Error&gt; element may contain any or all of the following
The body of the &lt;Error&gt; element may contain any or all of the following
inner elements each containing arbitrary text.
inner elements:
# &lt;Message&gt; &mdash; A short informative message describing the error.
# &lt;code&gt; &mdash; An numerically valued error code. This code must be associated with a protocol, such as HTTP, via the ''protocol'' attribute. It is not a requirement that the protocol over which the originating request and subsequent Error response where transmitted be the same as the protocol identified by the value of the ''protocol'' attribute.
# &lt;Context&gt; &mdash; Information describing the context in which the error occurred: position of a parse error in a constraint expression, for example.
# &lt;Message&gt; &mdash; A short informative text message describing the error.
# &lt;Context&gt; &mdash; Textual information describing the context in which the error occurred: position of a parse error in a constraint expression, for example.
# &lt;OtherInformation&gt; &mdash; Arbitrary additional text information: a Java stack trace, for example.
# &lt;OtherInformation&gt; &mdash; Arbitrary additional text information: a Java stack trace, for example.


==== Error Response Resource Role ====
=== Error Response Resource Role ===


DAP4 Error Responses are identified by the resource role:
DAP4 Error Responses are identified by the resource role:


: '''<font size="2"><code><nowiki>http://services.opendap.org/dap4/error</nowiki></code></font>'''
: '''<code><nowiki>http://services.opendap.org/dap4/error</nowiki></code>'''


==== Normative Encoding of the Error Response ====
=== Normative Encoding of the Error Response ===


The normative XML representation for the Error Response is defined in Appendix x "Normative XML Encoding of the Error Response". The media type for the normative XML representation is:
The normative XML representation for the Error Response is defined in Appendix x "Normative XML Encoding of the Error Response". The media type for the normative XML representation is:


: <font size="2"><code>'''application/vnd.opendap.dap4.error.xml'''</code></font>
: <font size="2"><code>'''application/vnd.opendap.dap4.error.xml'''</code></font>
=== Examples ===
; Not Found
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<dap4:Error xmlns:dap4="http://xml.opendap.org/ns/DAP/4.0#">
    <code protocol="http">404</code>
    <Message>Unable to locate requested resource</Message>
</dap4:Error>
</source>
; Parse Error
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<dap4:Error xmlns:dap4="http://xml.opendap.org/ns/DAP/4.0#">
    <code protocol="http">400</code>
    <Message>Bad DAP4 Request Syntax</Message>
    <Context>
        The constraint expression "?u[3][lat<66]" failed to parse at the sub expression "lat<66".
        Relational syntax expressions are not supported for array subsetting operations.
    </Context>
</dap4:Error>
</source>

Latest revision as of 22:30, 27 December 2013

The DAP4 protocol returns error information using an Error response. If a request for any of the three basic responses cannot be completed then an Error response is returned in its place.

Schema

The normative XML representation for the Error Response is defined by the following RELAX-NG schema.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0" xmlns:doc="http://www.example.com/annotation" datatypeLibrary="http://xml.opendap.org/datatypes/dap4" ns="http://xml.opendap.org/ns/DAP/4.0#">
    <start>
        <ref name="errorresponse"/>
    </start>
    <define name="errorresponse">
        <element name="Error">
            <optional>
                <element name="code">
                    <attribute name="protocol">
                        <data type="text"/>
                    </attribute>
                    <data type="dap4_integer"/>
                </element>
            </optional>
            <optional>
                <interleave>
                    <element name="Message">
                        <text/>
                    </element>
                    <element name="Context">
                        <text/>
                    </element>
                    <element name="OtherInformation">
                        <text/>
                    </element>
                </interleave>
            </optional>
        </element>
    </define>
</grammar>

The body of the <Error> element may contain any or all of the following inner elements:

  1. <code> — An numerically valued error code. This code must be associated with a protocol, such as HTTP, via the protocol attribute. It is not a requirement that the protocol over which the originating request and subsequent Error response where transmitted be the same as the protocol identified by the value of the protocol attribute.
  2. <Message> — A short informative text message describing the error.
  3. <Context> — Textual information describing the context in which the error occurred: position of a parse error in a constraint expression, for example.
  4. <OtherInformation> — Arbitrary additional text information: a Java stack trace, for example.

Error Response Resource Role

DAP4 Error Responses are identified by the resource role:

http://services.opendap.org/dap4/error

Normative Encoding of the Error Response

The normative XML representation for the Error Response is defined in Appendix x "Normative XML Encoding of the Error Response". The media type for the normative XML representation is:

application/vnd.opendap.dap4.error.xml

Examples

Not Found
<?xml version="1.0" encoding="UTF-8"?>
<dap4:Error xmlns:dap4="http://xml.opendap.org/ns/DAP/4.0#">
    <code protocol="http">404</code>
    <Message>Unable to locate requested resource</Message>
</dap4:Error>
Parse Error
<?xml version="1.0" encoding="UTF-8"?>
<dap4:Error xmlns:dap4="http://xml.opendap.org/ns/DAP/4.0#">
    <code protocol="http">400</code>
    <Message>Bad DAP4 Request Syntax</Message>
    <Context>
        The constraint expression "?u[3][lat<66]" failed to parse at the sub expression "lat<66". 
         Relational syntax expressions are not supported for array subsetting operations.
    </Context>
</dap4:Error>