I want to store multiple columns of data in shared queue. If it is possible how to do it
I've not tried but in theory you can concatenate values ${user.name}+++${user.pass}
You could pop them off the queue into a variable and then use some javascript to split the variable
var part1 = value.split("+++")[0]
var part2 = value.split("+++")[1]
NEIL answered
Sadasivuni posted a new question