-
Feature Request
-
Resolution: Done
-
Major
-
None
When reading a resource remotely, it would be nice to have the possibility to have expressions resolved.
Following does of course not work, as the code runs in a separate jvm.
private void readRecursive(ModelNode modelNode, String modelNodeName, Map<String, Object> map) { switch (modelNode.getType()) { ... case EXPRESSION: // this would be great but won't work as it runs in a different jvm // ModelNode expression = modelNode.resolve(); // readRecursive(expression, modelNodeName, map); map.put(modelNodeName, modelNode.asString()); break; ... }
Therefore a param resolve-expressions for the read-resource operation would be good.
- is duplicated by
-
AS7-2792 CLI doesn't show resolved multicast address for socket-binding definition like jgroups-udp or jgroups-mping
- Resolved