-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: 5.0.0 GA
-
Fix Version/s: 5.2.0 GA
-
Component/s: JBossAS
-
Labels:None
-
Release Notes Text:
-
Release Notes Docs Status:Documented as Resolved Issue
In the server/<config>/conf/jboss-service.xml file there is mbean's attributes configured as following:
<server>
<mbean ... name="jboss:service=Naming" ...>
...
<attribute name="BindAddress">
<value-factory bean="ServiceBindingManager" method="getStringBinding">
<parameter>jboss:service=Naming</parameter>
<parameter>Port</parameter>
<parameter><null/></parameter>
</value-factory>
</attribute>
...
</mbean>
...
</server>
This exact configuration is fine. But while I change element formatting as follows, the </null> parameter parsing fails.
...
<attribute name="BindAddress">
<value-factory bean="ServiceBindingManager" method="getStringBinding">
<parameter>jboss:service=Naming</parameter>
<parameter>Port</parameter>
<parameter>
<null/>
</parameter>
</value-factory>
</attribute>
...
It seems the parser that parses this file doesn't ignore white-spaces around the <null/> element and the mbean behaves in different way.
- is blocked by
-
JBPAPP-4136 Incorrect parsing of jboss-service.xml
-
- Closed
-