Hi,
I am trying to install a channel if the channel is not available in the device,
I am using the following code,
ip = CreateObject("roDeviceInfo").GetIPAddrs()
url="http://"+ip["eth1"]+":8060/install/"+m.top.ChannelCode
obj = CreateObject("roUrlTransfer")
obj.SetPort(CreateObject("roMessagePort"))
obj.SetUrl(url)
obj.AsyncPostFromString("")
But using the same code if i try with launch instead of install it works fine it launches the channel correctly.
This code works in the beginning i don't know what happend now. Am i missing anything?