SendXMLCmd(String,String) Method
- Last UpdatedNov 06, 2025
- 1 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.
'Declaration
Public Overloads Sub SendXMLCmd( _
ByVal xmlCmd As String, _
ByRef xmlResponse As String _
)
public void SendXMLCmd(
string xmlCmd,
out string xmlResponse
)
Parameters
- xmlCmd
- Required. Holds an XML string containing a Middleware command.
- xmlResponse
- Required. Holds an output parameter for returning an XML string representing the response from the Middleware.