Configuration of Sandesha2 module using a policy in service.xml is broken
-------------------------------------------------------------------------
Key: SANDESHA2-67
URL: https://issues.apache.org/jira/browse/SANDESHA2-67
Project: Apache Sandesha2
Issue Type: Bug
Environment: Sandesha2 1.1, Axis2 1.1.1
Reporter: Thilo Frotscher
Priority: Critical
According to the documentation a policy can be inserted into a service.xml file
to configure the Sandesha2 module and overwrite the settings from module.xml.
This functionality is broken due to a typo in class PropertyManager, method
loadPropertiesFromAxisDescription.
This line of code is incorrect:
for (Iterator assertions = assertionList.iterator();
iterator.hasNext();) {
This would be correct:
for (Iterator assertions = assertionList.iterator();
assertions.hasNext();) {
Also, below that there is a lot of code that was turned into a comment. I
didn't investigate whether this code would be necessary as well to make the
configuration via service.xml work.
Thanks,
Thilo
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]