cannot add rows to InfoTable session variable
I have an infotable session variable called testsessvar, it is defined with a datashape (containing 2 text fields: Doc_Name, Doc_URL)
on the server side I have a service defined as follows
{
input newinfotable_entry (using same dateshape as the one the session variable uses)
tmp = Resources["CurrentSessionInfo"].GetGlobalSessionValues().getRow(0).testsessvar;
tmp.AddRow(newinfotable_entry);
result = tmp;
}
the output of this service is connected with the session variable in the mashup (so the update of the session variable is being done on the client side, I have also tried to update it in the script with same result)
The idea is to be able to continually add rows to the infotable session variable
unfortunately the only thing being added is empty objects (the below image shows what gets returned from
the above service)

This second image shows the input value of newinfotable_entry

