Hi, What is the right way to return empty arrays from webservices in Java? I need that empty arrays sholdn't be nulls on client. If I use Apache CXF or Axis 2 with default databinding I receive null insted of empty arrays. If I use CXF and AegisDatabinding -- problem is solved, but when I calling this webservice from Axis 2 client -- I receive null parameters on server (like in this question http://stackoverflow.com/questions/2087465/web-service-call-via-cxf-gives-null-parameters).
Thanks.