The function soap.digestTransaction executes a transaction, according to the XML document with SOAP format which is passed as argument.
1 soap.digestTransaction
<soap.digestTransaction>
<data /> ?
</soap.digestTransaction>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Edata | Object2String | Code which defines the class which you want to define. |
Returns | |
---|---|
Type | Description |
file | Returns a XML document with SOAP format with the result of the operation. |
Example
Execution of a SOAP transaction given a XML document.
Copy
<set name='m_xml'> <dom.parse> <file.open temp='false' name='soap.xml' /> </dom.parse> </set> <set name='m_result'> <soap.digestTransaction> <m_xml /> </soap.digestTransaction> </set> <println> <m_result /> </println>