05-07-2014 10:24 AM
greetings to the citiizens of Teststan-osphere,
I have to read the resultlist from main seq & sub seqs (num, str, arrays bool etc) in SequenceFilePostResultListEntry
I was partly sucess ful using
Parameters.Result.AdditionalResults["Parameters"]
1) are there other methods for the same task.
2) the steps in SequenceFilePostResultListEntry do not record their result. How do I record a result in this callback.?
05-12-2014 08:47 AM
We could probably help you better if we understood what your goal was. Why do you want the callback to insert results into the container?
You can access the caller's resultlist by using Caller.Locals.ResultList. Then you can iterate through it and do whatever you want pretty much.
You can even insert subproperties into it.
I don't recommend recording any results in an engine callback. That just doesn't make sense. It doesn't get propagated back to the main resultlist.
If you want to manipulate the currently executing step's results it looks like you are on the right track by using the parameters. Because those are passed by reference they will propagate back to the caller.
Hope this helps,
05-12-2014 10:41 AM
Thanks a lot Jigg,
I have the issue solved.