how a process is launched from JSP in IdM 7.0?
I am trying to find out how to launch a process from JSP page so that I can add my own workflow to the JSP page or even creating my own JSP pags launching my own process.
I found an exmpale in the application:
C:\tomcat\webapps\idm\user\processLaunch.jsp
which is able to launch the following processes defined in System Configuration Object:
<Attribute name='endUserUpdateGroups' value='End User Update Groups'/>
<Attribute name='endUserUpdateMyGroups' value='End User Update My Groups'/>
<Attribute name='endUserUpdateMyResources' value='End User Update My Resources'/>
<Attribute name='endUserUpdateMyRoles' value='End User Update My Roles'/>
<Attribute name='endUserUpdateResources' value='End User Update Resources'/>
<Attribute name='endUserUpdateRoles' value='End User Update Roles'/>
In the jsp code, I see the following line:
<jsp:useBean id="form" scope="page"
class="com.waveset.ui.web.task.TaskLaunchForm"/>
However I do not see where the process name is referenced, then at the end, I see:
String url = form.process(requestState);
which seems to load the process at last.
Can anyone explain to me?
Thank you.

