Using JBoss 7's jboss-cli I can query the deployed applications:
[standalone@localhost:9999 /] deployment-info --headers=
NAME RUNTIME-NAME PERSISTENT ENABLED STATUS
jboss-ejb-in-ear.ear jboss-ejb-in-ear.ear true true OK
singleton_in_war.war singleton_in_war.war true true OK
Programatically I can query any CLI query starting with /, for example this:
/path=jboss.server.log.dir:read-attribute(name=path)
where the address is
/path=jboss.server.log.dir
and the operation is
read-attribute(name=path)
My question is, for the CLI query
deployment-info --headers=
what is the address and what is the operation?
Best regards, SK