just confirming that bean with attribute of array of beans can be handled correctly by axis, though will be serialized/de. via multiref unless that is toggled false. Some attributes of my beans have been null and that's worked, but I've never had null bean array elements.
On Wed, 2002-07-17 at 10:22, James Black wrote: > Hello, > I can't get my program to work when I try to send an array of objects, > but when I turn that array into an xml file it works. > It dawned on me that my problem may be that some of the attributes are > null, so I am working on trying to correct that. > > I have an object that has an attribute that is an array of objects. > > public class beanA { > private beanB[] attributeA; > private int[] attributeB; > } > > If SOAP can't handle null values how do I set the attribute so I can > transfer it back to the client? > > Thank you. >