I have a code for finding the list of containers from the ams in jade using queryPlatformAction method. I am getting a problem for typecasting the container id while putting the sop statement at the end..
Result result = (Result) content;
List listOfPlatforms = (List) result.getValue();
Iterator iter = listOfPlatforms.iterator();
while (iter.hasNext())
{
ContainerID next = (ContainerID) iter.next();
System.out.println(next.getID());
}
It is throwing an exception to me.
The exception is: java.lang.ClassCastException: jade.util.leap.ArrayList cannot be cast to java.util.List please help.