I have:
var myArray = new Array();
myArray[0]="firststring";
myArray[1]="secondstring";
myArray[2]="thirdstring";
p.setMyArray(myArray); <-- this line does not work...
Where in p is a java class containing the following:
public void setMyArray(String[] v) { myArray= v; }
can anyone help me?
If it makes any difference, in the end, I want to write the string values to a multi-value attribute in LDAP.
Thanks
Jenny
var myArray = new Array();
myArray[0]="firststring";
myArray[1]="secondstring";
myArray[2]="thirdstring";
p.setMyArray(myArray); <-- this line does not work...
Where in p is a java class containing the following:
public void setMyArray(String[] v) { myArray= v; }
can anyone help me?
If it makes any difference, in the end, I want to write the string values to a multi-value attribute in LDAP.
Thanks
Jenny