hi all,
how do we Serialize an String[][] .. in my code..
i have to serialize a 2-D string array called parameters. I dot it like this..
String my2DAray[][]= new String[][]{
{"param1","N",""},
{"param2","D","out"},
{"param3","S","out"},
};
Serializeable[] params = new Serializable[] {my2DAray});
The problem arises when i try to inovke a remote method called myMethod using these as the parameters . The probelm that i get is..
"No such Method myMethod(java.lang.String)"
The signature of myMethod is
public void myMethod(String[][] args )
Pls help me to resolve this issue
Novice
out.write(my2DAray);
out.close();