Default XSLT files generate incorrect op parameter order
Brought to you by:
simonebordet,
tibu
Default xslt files for XSLT processor generate invalid parameter order in MBean operations.
Evaluation mbean.xsl file, template "parameters" orders parameters by id but using "text" type insted of "number" with turns up into the next order:
0,1,10,11,12,2,3......
when correct order should be
0,1,2,3,......,10,11
This presentation error turns up into execution error when invoking operation because parameter are not correctly ordered:
Error during MBean operation invocationMessage: Operation singature has no match in the MBean
Quick fix is applied on attached file by changing data-type for sort element from text to number
Thanks.
mbean.xsl patch