Hi!
I call a webservice that can return multiple objects.
How do I make tWebserviceInput component to output several rows?
I use tWebserviceInput in advanced mode. Standard example is to do this :
for(int i = 0; i < result.length; i++){
output_row.name = result
; output_row.address = result; } But, obviously, this will result in one one row being output. This si what happens. So is there a way to output several rows? Thanks, Marina
I answer myself in case somebody wans to know if there is a solution. I could not get it done with iWebserviceInput. I ended up creating tJavaFlex that calls webservice code and then iterates through the lines of the result. This component has output links "Main" and "Interate" so I can use a resulting lines normally