Difference between revisions of "XML DECODE()"

From Recital Documentation Wiki
Jump to: navigation, search
Line 2: Line 2:
  
 
==Purpose==
 
==Purpose==
Return a decoded character string containing XML as an object
+
Return a character string containing XML decoded as an object
  
  
Line 14: Line 14:
  
 
==Description==
 
==Description==
The XML_DECODE() function returns the decoded character string containing XML, <expC1>, as an object.
+
The XML_DECODE() function returns the character string containing XML, <expC1>, decoded as an object.
  
  
Line 25: Line 25:
 
       // retrieve message
 
       // retrieve message
 
       m_message = mqreceive(m_mqdes)
 
       m_message = mqreceive(m_mqdes)
           // decode the XML message into a dynamic array
+
           // decode the XML message into an object/dynamic array
 
           m_objmessage = xml_decode(m_message)
 
           m_objmessage = xml_decode(m_message)
 
           // process the message
 
           // process the message

Revision as of 11:09, 27 November 2009

Template:YLM to do

Purpose

Return a character string containing XML decoded 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 character string containing XML, <expC1>, decoded 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 an object/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