Hello,
I have an issue with setting iView Parameters. I do the following:
response.write("Converting...<br/>");
iiv.putAttribute("ApplicationParameter","queryid="+request.getParameter("queryid"));
try
{
iiv.save();
iiv.notifyAll();
}catch (ValidationException ve)
{
response.write(ve.toString());
}
catch (IOException ie)
{
response.write(ie.toString());
}
However, when I see the iView properties in the portal the value is not changed. When reading the value programatically, it is changed. Are there two of them or do I have a caching issue here?
I already tried clearing browser cache and so forth, but problem remains.
My code is supposed to change iView-ApplicationParameters..