Avatar

Level 1

So if I were to invoke a service expecting an input of Task Result Collection with variable name taskResultsCollection for example.  All I would need to do is send in a java Collection Object? e.g.

[CODE]

List l = new LinkedList();

l.add(taskInfo0);

l.add(taskInfo1);

Map.put("taskResultsCollection", l);

[/CODE]

Will this work?  I will try and update the post as answered if this will work!