If you changed the webapp, you still using JSF?
If you are using your own servlet then why not prepare the form parameters list on your
own and set it to the request or session (whatever feasiable)
Preparing form parameter list is straight forward:
List taskFormParameters = new ArrayList();
| TaskController taskController = taskInstance.getTask().getTaskController();
| if (taskController!=null) {
| List variableAccesses = taskController.getVariableAccesses();
| Iterator iter = variableAccesses.iterator();
| while (iter.hasNext()) {
| VariableAccess variableAccess = (VariableAccess) iter.next();
| String mappedName = variableAccess.getMappedName();
| Objec! value = taskInstance.getVariable(mappedName);
| TaskFormParameter tfp = new TaskFormParameter(variableAccess, value);
| taskFormParameters.add(tfp);
| }
Thanks.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3959580#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...