Hi,
I have a problem with values on output parameters. When I execute my custom component, I put a value with bean.put("result",value) but when I get this value in ok flow is empty. I dont have problems with input parameters, only with output parameters.
I define input and output parameters like:
<InputParameter name="<%=unitId%>.value" label="value" />
<OutputParameter name="<%=unitId%>.result" label="result" />
And the code:
public Object execute(Map operationContext, Map sessionContext) throws RTXException {
ExtendedOperationUnitBean bean=new ExtendedOperationUnitBean();
String value=BeanHelper.asString(operationContext.get(getId()+".value"));
.... code ....
bean.put("result", true);
return bean;
}
Thanks.