SendXMLCmd Method
- Last UpdatedNov 06, 2025
- 2 minute read
The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method simply returns the XML response to the caller as a string, whether the command was executed successfully or not. No analysis or decoding is performed on the result.
| Overload | Description |
|---|---|
| SendXMLCmd(String,String) | The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method simply returns the XML response to the caller as a string, whether the command was executed successfully or not. No analysis or decoding is performed on the result. |
| SendXMLCmd(String,XMLParser) | The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method returns an XMLParser object with the XML response loaded into it, whether the command was executed successfully or not. No analysis or decoding is performed on the result. |
| SendXMLCmd(String) | The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method checks whether the command was executed successfully or not by checking the <result> tag. |
| SendXMLCmd(String,Int32) | The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method checks whether the command was executed successfully or not by checking the <result> tag, and then it extracts and returns by reference the <identity> value in the XML response. Use this overload for any Middleware command that returns an identity value in the XML response. |
| SendXMLCmd(String,Int32,String) | The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method checks whether the command was executed successfully or not by checking the <result> tag, and then it extracts and returns by reference the <identity> value AND the <mod_Id> value in the XML response. Use this method for any Middleware command that returns an identity value and a mod_Id in the XML response. |
| SendXMLCmd(String,String,Int32) | The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method checks whether the command was executed successfully or not by checking the <result> tag, and then it extracts and returns by reference the <mod_Id> value in the XML response. Use this method for any Middleware command that returns a mod_Id in the XML response. |
| SendXMLCmd(String,Int32,DateTime) | The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method checks whether the command was executed successfully or not by checking the <result> tag, and then it extracts and returns by reference the <identity> value AND the <last_edit_at> value in the XML response. Use this method for any Middleware command that returns an identity value and a last_edit_at in the XML response. |
| SendXMLCmd(String,DateTime) | The SendXMLCmd() method submits an XML command to the Middleware. This overload of the method checks whether the command was executed successfully or not by checking the <result> tag, and then it extracts and returns by reference the <last_edit_at> value in the XML response. Use this method for any Middleware command that returns a last_edit_at in the XML response. |