Hello,
How can I update the parameter values if I have this coding:
Map<String, Object> params= new HashMap<String, Object>();
params.put("studentId", "1234");
params.put("studentName", "Alvinah");
ksession.startProcess("com.registerstudent", params);
................
How can I update the values (1234, Alvinah). studentId and studentName is my variables.
cheers