I personally use a TCL script to send commands to ACE via XML.
Here is the main function :
proc issue_command { cmd } {
global user pass mgmt_ip
if { [catch {set output [exec -- curl \
-s http://${user}:${pass}@${mgmt_ip}/bin/xml_agent \
-d "xml_cmd=${cmd}"] } error] } {
puts "Problem with exec: $error"
exit 0
}
return $output
}
Gilles.