You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by Jacob Marcus <ja...@gmail.com> on 2007/09/08 00:16:15 UTC

Possible bug in Aegis data binding

Hi,

Let us say our operation has the Signature, doSomthing(String s1, String s2,
String s3);
Now if s2 is null, then onwards all the rest of the parameters are also not
populated. They all remain null.

The issue seems to be in XMLStreamDataReader.

 if (elReader.isXsiNil()) {
            elReader.readToEnd();
            return null;
}

I believe that the readToEnd() here is the issue. Now this could be also
because, there is something I have not understood completely. Any
information would be very useful.

Thansk,
Jacob