-
1. Re: query regarding Service Binding Manager on JBoss 5.x
peterj Jul 13, 2010 11:15 AM (in response to gopi1828)If you look at bindings-jboss-beans.xml, you will see around lines 435-478 that there is an XSL transform that located the ports that have to bechanged in server.xml. Here is the locator for the http port:
<xsl:when test="(name() = 'port' and . = '8080')">
As you can see, this locator depends on the port value in server.xml being set to 8080. Thus if you change server.xml, the http port setting in bindings-jboss-beans.xml will be ignored.
-
2. Re: query regarding Service Binding Manager on JBoss 5.x
gopi1828 Jul 13, 2010 11:41 AM (in response to peterj)Thx Peter.
So, starting from JBoss 5.x if we change ports in bindings-jboss-beans.xml then we dont need to change any of configucation or xml files to configure or change ports which are scattered across conf and deploy folders right.
-
3. Re: query regarding Service Binding Manager on JBoss 5.x
peterj Jul 13, 2010 1:25 PM (in response to gopi1828)That is correct - you shouldchange port numbers only in bindings-jboss-beans.xml.