|
|
|
|
|
SOAPGetHeader (Function) In french: SOAPRécupèreEntête Retrieves a header in the SOAP message received further to a call to a Webservice.
// Call the function for sending SMSs of the WSSMS Webservice (fictitious) WebServiceSendSMS("0601020304", "ALERT", ... "Caution: the database server does not respond anymore.") Â // Retrieve the number of remaining credits // This number is returned by the WSSMS Webservice in the headers of the SOAP requests RemainingCredit is int RemainingCredit = SOAPGetHeader(WSSMS, "NumberCredits") IF RemainingCredit < 50 THEN WarnEndCredit() END Syntax
<Result> = SOAPGetHeader(<Webservice> , <Header>)
<Result>: Variable whose type depends on the header Value of retrieved header. If the requested header does not exist, the ErrorOccurred variable is set to True.The type of the returned value depends on the requested header. This type is specified in the documentation of the Webservice. <Webservice>: Character string Name of the Webservice to use. <Header>: Character string Name of the header to retrieve. Remarks SOAPGetHeader must be called: - after running a function of the Webservice,
- before any other call to a function of the Webservice or to SOAPRun or SOAPRunXML.
SOAPGetHeader can be called multiple times to retrieve multiple headers. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|