I'm getting the issue(Execution TimeOut) with the Task node. I created one Timer in the Scene node for Continuous Execute Function Here I Tried With Continuous Response Update With Task node and After It used in Scene Node.
'Timer
m.Update = m.top.findNode("SampleID")
m.Update .observeField("fire", "UpdateSample")
m.global.responseurl = m.urlassign
m.Update.control = "RUN"
'My Function
function UpdateSample()
m.Sample= CreateObject("roSGNode", "SampleTask")
m.Sample.control = "RUN"
?"m.global.responsecontent : " m.global.responsecontent
end function
'My Task Node
sub init()
?"Start Init()"
m.DowndloadResponse = CreateObject("roUrlTransfer")
m.DowndloadResponse.SetUrl(m.global.responseurl)
m.Cont= m.DowndloadResponse.GetToString()
m.global.responsecontent = m.Cont
?"m.global.responsecontent : " m.global.responsecontent
?"End Init()"
end sub
Here, Not getting every time DowndloadResponse.GetToString() "Execution TimeOut". Sometimes It Gives the Error. I tried with m.top.functionname. But It's Execution at once. I also Tried with Timer Set in Task Node. But No luck. I required It's multiple. I don't know Which one is a good way to implement this. Does Anyone any idea how do solve this problem?