This document was generated from CDN thread
Created by: Florian Kroessbacher on 26-01-2010 03:44:27 PM
Hy Out There
we have done the wsdl2java from the AXLToolkit wsdl from our CuCM.
No if got the following Problem:
when i do the folling Code
public static void testGetCSS (){
ListCSSByNameReq listCSS = new ListCSSByNameReq();
listCSS.setSearchString("901%");
ListCSSResponseReturn csslist;
try {
csslist = stub.listCSSByName(listCSS).get_return();
stub.
XCallingSearchSpace[] css = csslist.getCallingSearchSpace();
System.out.println(css.length);
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
I got this Exception:
java.lang.IllegalArgumentException: Invalid Namedata=[901_BLF]
Where can i change the NameSpace from name to String or so
thanx