Hi,
I am currently having a problem in fetching some values on the Seeburger Mapping Variables from an BPM. What I currently do is the normal way of fetching the value using an UDF in my message mapping: below is the sample code that I did on my function:
import seeburger.functions.permstore.impl.;com.seeburger.functions.permstore.;
......
try {
VariableBeanServlet vbs;
vbs = (VariableBeanServlet)VariableFactory.getVariableInstance(VariableFactory.PROPERTY_CLASSNAME_DEFAULT);
return vbs.getStringVariable(a);
}catch(PermstoreException e){
return "";
}
did i missed something on my code?
best regards,
mike