XML DECODE()
From Recital Documentation Wiki
Revision as of 11:08, 27 November 2009 by Yvonnemilne (Talk | contribs)
Purpose
Return a decoded character string containing XML as an object
Syntax
XML_DECODE(<expC1> [, <expC2>, <expC3>])
See Also
Messaging Functions, MQCLOSE(), MQCREATE(), MQCURMSGS(), MQOPEN(), MQSEND(), MQRECEIVE(), XML_ENCODE(), XML_GATHER(), XML_SCATTER()
Description
The XML_DECODE() function returns the decoded character string containing XML, <expC1>, as an object.
Example
// Proccess the message queue do while .t. // Check for new messages do while (mqcurmsgs(m_mqdes) > 0) // retrieve message m_message = mqreceive(m_mqdes) // decode the XML message into a dynamic array m_objmessage = xml_decode(m_message) // process the message mq_process_message(m_objmessage, m_message) enddo sleep 1 enddo
Products
Recital, Recital Server