]
Martin Stefanko updated WFLY-11434:
-----------------------------------
Labels: downstream_dependency (was: )
Set the iiop bound port of the socket binding
---------------------------------------------
Key: WFLY-11434
URL:
https://issues.jboss.org/browse/WFLY-11434
Project: WildFly
Issue Type: Enhancement
Components: IIOP
Reporter: Claudio Miranda
Assignee: Claudio Miranda
Priority: Minor
Labels: downstream_dependency
Fix For: 16.0.0.Beta1, 16.0.0.Final
iiop and iiop-ssl socket binding doesn't show the runtime attributes *bound,
bound-address, bound-port* as set, making it difficult to map the open ports to the socket
bindings when the server is launched with a port offset.
{code}
"address" => [
("host" => "master"),
("server" => "server-three"),
("socket-binding-group" => "full-ha-sockets"),
("socket-binding" => "iiop")
],
"outcome" => "success",
"result" => {
"bound" => false,
"bound-address" => undefined,
"bound-port" => undefined,
"client-mappings" => undefined,
"fixed-port" => false,
"interface" => "unsecure",
"multicast-address" => undefined,
"multicast-port" => undefined,
"name" => "iiop",
"port" => 3528
}
},
{
"address" => [
("host" => "master"),
("server" => "server-three"),
("socket-binding-group" => "full-ha-sockets"),
("socket-binding" => "iiop-ssl")
],
"outcome" => "success",
"result" => {
"bound" => false,
"bound-address" => undefined,
"bound-port" => undefined,
"client-mappings" => undefined,
"fixed-port" => false,
"interface" => "unsecure",
"multicast-address" => undefined,
"multicast-port" => undefined,
"name" => "iiop-ssl",
"port" => 3529
}
},
{code}