TS 6.5; W2k
TeamSite::WFtask has a method called SetAttribute. I don't see any method that gets task attributes. Is there anything that would accomplish GetAttribute ? If not, whats the alternative ?
I know I can get the wf xml using iwgetwfobj and parse it to get the task attributes I want. However that seems to be an overkill for what I am trying to do. Is there a simpler way ?
What I am trying to do is get the task attributes such as lock, readonly, etc. from the task object. The snippet below is from the output of iwgetwfobj
...
<externaltask name="Generate_Pages" owningworkflow="166387"
lock="t" transferonly="f"
readonly="f" state="done"
active="f" owner="webdev\UnadkS"
unactivatible="f" tryingtolock="f"
undoable="f" retry="t">
...
Thoughts/RTFMs welcome