Hi Bill,
I saw your post regarding received SOAP response in which a complexType
contains arrays of complex type.
You gave an example and said that all you need is to have setters and
getters in the complex type.
something like

public PhoneInfo getPhoneItem(int i)
{
return phoneItem[i];
}

and
public void setPhoneItem(int i, PhoneInfo value)
{
phoneItem[i] = value;
}

I have tried several different things including this, and have not been
able to get my code to work.
I have put getters and setters similar to the one above in all the classes
which return arrays of different complex types.
But I keep getting "deserializer for Array not found.

Can you please point me in the right direction.

Thanks,
Parul

Reply via email to