You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by Benson Margulies <bi...@gmail.com> on 2009/12/27 16:56:13 UTC

I need some help, maybe, with CXF-2593

A service function tries to return Collection<double[]>

Aegis throws up its hands and treats this as a collection of anyType.
Which, on the read side, tries to run the code to return DOM
fragments. However, that reading code is expecting a wrapper element,
which, not being there, results in complete chaos.

The immediate fix here is to make this show up as a collection of
collections of doubles, not a collection of anyType. I guess I'll try
to remember to make another test case for the legitimate anyType array
case after I fix the immediate problem.