What is the most descriptive way to define HTTP basic authentication header in a WADL?

712 Views Asked by At

I would like to describe HTTP basic authentication within a WADL, what is the most descriptive way to achieve this?

1

There are 1 best solutions below

0
On BEST ANSWER

Since basic authentication is implemented as a header, simply use a param within your request.

<method name="GET">
    <request>
        <param name="Authorization" style="header" type="xs:string" required="true" />
        <!-- other headers... -->
    </request>

    <response>
        <!-- repsonse.. -->
    </response>
</method>