Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (Français) » SQL Anywhere Server - SQL Reference » Using SQL » SQL functions » SQL functions (E-O)

 

NEXT_SOAP_HEADER function [SOAP]

Returns the next header key in a SOAP request header.

Syntax
NEXT_SOAP_HEADER( header-key )
Parameters

header-key   The XML local name of the top level XML element for the given header entry.

Returns

LONG VARCHAR

Remarks

If you specify NULL for the header-key, the function returns the header key for the first header entry found in the SOAP header.

This function returns NULL if called with the last header-key.

See also
Standards and compatibility
  • SQL/2003   Vendor extension.

Example

When used within a stored procedure that is called by an HTTP web service, the following statement returns the first header key found in the SOAP header.

SET header_key = NEXT_SOAP_HEADER( NULL );