Hi

During tests of Axis2 1.3 parser speed performance for our existing project
we have found big problem in
org.apache.axis2.databinding.utils.ConverterUtil and its convertTo* methods
when  processed XML has some empty tags. Convert methods have no code to
test given parameter to 'null' value or value equals to "".

To be able to parse any XML we had to add the following simple code into
these methods:
        if (s == null || "".equals(s)) {
          return null;
        }

We think it will be worth to fix it and add this simple code.
Thanks

-- 
Jozef Krssak

Reply via email to