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.