Function ADDSOAPRESPONSEHEADER
Adds a SOAP response header to a web service response. Call only from within a CFC web service function that is processing a request as a SOAP web service.
Beispiel
addsoapresponseheader(string namespace,string name,object value,[boolean mustUnderstand]):boolean
Argumente
Die Argumente für diese Funktion sind fest vorgegeben. Ausser den nachfolgenden Argumenten dürfen keine weiteren verwendet werden.
Name | Typ | Required | Beschreibung |
---|---|---|---|
namespace | string | Yes | A String that is the namespace for the header. |
name | string | Yes | A String that is the name of the header |
value | object | Yes | the value for the SOAP header; this can be a XML value. |
mustUnderstand | boolean | No | Sets the SOAP mustunderstand value for this header. |