]
Jeff MAURY updated JBIDE-24991:
-------------------------------
Fix Version/s: 4.6.x
(was: 4.5.x)
Improve server port offset detection by inspecting configured system
properties
-------------------------------------------------------------------------------
Key: JBIDE-24991
URL:
https://issues.jboss.org/browse/JBIDE-24991
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: server
Affects Versions: 4.5.0.Final
Environment: JBDS11, WF10
Reporter: Vsevolod Golovanov
Assignee: Rob Stryker
Fix For: 4.6.x
The default Wildfly standalone.xml config has port offset configured like this:
{code}
<socket-binding-group ...
port-offset="${jboss.socket.binding.port-offset:0}">
{code}
With the way our configuration process is set up we don't change that. Instead we add
a system property to the same config file:
{code}
<system-properties>
<property name="jboss.socket.binding.port-offset"
value="10"/>
</system-properties>
{code}
The problem is JBoss Tools doesn't detect this currently. It could be improved to
inspect the port-offset attribute and find the corresponding system property value.