There are probably many ways to get this to work.
First, you have the 2D array of objects. How do you expect the object
to be created given a piece of data from XML?
One way, I haven't tried it, but you have to find out what are the
different object types that will have instances go into that ar
Hi all,
I am trying to make a web service that uses a complex type object as return
value. My complex object looks like
public class ComplexBean
{
private String[] str;
private Object[][] val;
public String[] getStr()
{
return str;
}
public void setStr(String[] s