Hello, i have the next problem i would like if anyone can help me.
The array “a” is full it with random numbers that i generate in another method call “dice”, the problem is that i can’t get the output to work. When i run it, the output is a code o something for example= [I@5e8a49
this are the input and out of the java service:
input: cant(integer)
out: glass (integer list)
this the code of the java service on the devepoler ide.
// pipeline
IDataCursor pipelineCursor = pipeline.getCursor();
int cant = IDataUtil.getInt( pipelineCursor, “cant”, -1 );
int a =new int[cant];
for(int i =0; i < a.length ; i++){
a[i]=dice();
}
IDataUtil.put( pipelineCursor, “glass”, a );
pipelineCursor.destroy();
any idea?
#Flow-and-Java-services#Integration-Server-and-ESB#webMethods