-
Feature Request
-
Resolution: Won't Do
-
Major
-
None
-
7.1.1.Final, 7.1.2.Final (EAP)
-
None
When trying to change a value of an xa-datasource-properties with the following command:
/subsystem=datasources/xa-data-source=testXA/xa-datasource-properties=User:write-attribute(name=value,value=Test)
One gets an error messaging saying:
{ "outcome" => "failed", "failure-description" => "JBAS014639: Attribute value is not writable", "rolled-back" => true, "response-headers" => {"process-state" => "reload-required"} }
However, the attribute can be removed and then re-added with different value, leading to a reload-required:
[standalone@localhost:9999 /] /subsystem=datasources/xa-data-source=testXA/xa-datasource-properties=User:remove() {"outcome" => "success"} [standalone@localhost:9999 /] /subsystem=datasources/xa-data-source=testXA/xa-datasource-properties=User:add(value=Test) { "outcome" => "success", "response-headers" => { "operation-requires-reload" => true, "process-state" => "reload-required" } } [standalone@localhost:9999 /]
To be consistent, the attribute value should be writable and also leads to a reload-required.