Can't set attributes of element transport-config in CLI
-------------------------------------------------------
Key: WFLY-5161
URL:
https://issues.jboss.org/browse/WFLY-5161
Project: WildFly
Issue Type: Bug
Components: IIOP
Affects Versions: 10.0.0.Beta1
Reporter: Ondra Chaloupka
Assignee: Tomasz Adamski
Fix For: 10.0.0.CR1
It's not possible to set attributes of element {{transport-config}} in CLI.
When I run {{:read-resource()}} I get
{code}
/subsystem=iiop-openjdk:read-resource()
{
"outcome" => "success",
"result" => {
"add-component-via-interceptor" => true,
"auth-method" => "username_password",
"caller-propagation" => "none",
"client-requires" => "None",
"client-supports" => "ServerAuth",
"confidentiality" => "none",
"detect-misordering" => "none",
"detect-replay" => "none",
"export-corbaloc" => true,
"giop-version" => "1.2",
"high-water-mark" => undefined,
"integrity" => "required",
"number-to-reclaim" => undefined,
"persistent-server-id" => "1",
"properties" => undefined,
"realm" => undefined,
"required" => false,
"root-context" => "JBoss/Naming/root",
"security" => "identity",
"security-domain" => undefined,
"server-requires" => "None",
"server-supports" => "MutualAuth",
"socket-binding" => "iiop",
"ssl-socket-binding" => "iiop-ssl",
"support-ssl" => false,
"transactions" => "spec",
"trust-in-client" => "none",
"trust-in-target" => "none"
}
}
{code}
but XML can contain two emelents
{code}
<client-transport integrity="supported"
confidentiality="supported" trust-in-target="supported"
trust-in-client="supported" detect-replay="supported"
detect-misordering="supported" />
<transport-config integrity="supported"
confidentiality="supported" trust-in-target="supported"
trust-in-client="supported" detect-replay="supported"
detect-misordering="supported" />
{code}