-
Bug
-
Resolution: Done
-
Major
-
7.0.1.CR1, 7.1.0.DR4
-
None
I tried to click through CLI GUI, particullary interested in webservices subsystem.
I navigated through the tree into /subsystem=webservices/endpoint-config=*, right-click and chose read-resource-description.
It generated this command, but after executing through GUI, it returns null:
/subsystem=webservices/endpoint-config=*/:read-resource-description(recursive=false,access-control=none) null
The same command in console CLI return valid resut:
[standalone@localhost:9990 /] /subsystem=webservices/endpoint-config=*/:read-resource-description(recursive=false,access-control=none) { "outcome" => "success", "result" => [{ "address" => [ ("subsystem" => "webservices"), ("endpoint-config" => "*") ], "outcome" => "success", "result" => { "description" => "Webservice endpoint configuration", "attributes" => {}, "operations" => undefined, "notifications" => undefined, "children" => { "pre-handler-chain" => { "description" => "Pre handler chain", "model-description" => undefined }, "post-handler-chain" => { "description" => "Post handler chain", "model-description" => undefined }, "property" => { "description" => "Configuration property", "model-description" => undefined } } } }] }
The problem seems to be related to the access-control=none parameter, because without it both GUI and console return the same valid result
/subsystem=webservices/endpoint-config=*/:read-resource-description(recursive=false) { "outcome" => "success", "result" => [{ "address" => [ ("subsystem" => "webservices"), ("endpoint-config" => "*") ], "outcome" => "success", "result" => { "description" => "Webservice endpoint configuration", "attributes" => {}, "operations" => undefined, "notifications" => undefined, "children" => { "pre-handler-chain" => { "description" => "Pre handler chain", "model-description" => undefined }, "post-handler-chain" => { "description" => "Post handler chain", "model-description" => undefined }, "property" => { "description" => "Configuration property", "model-description" => undefined } } } }] }
- is cloned by
-
WFCORE-1776 CLI gui returns null for specific command with access-control parameter while console CLI returns valid result
- Resolved
- is incorporated by
-
JBEAP-5897 (7.1.0) Upgrade to WildFly Core 3.0.0.Alpha8
- Verified
- is related to
-
JBEAP-4541 CLI in gui mode should wrap values for write-attribute into quotation marks
- Closed