JSP

Hi all,
I am just a begineer in wM.I want to invoke a flow service,and also needs to get or set values in a variable used in the developer using jsp.
this is what i have tried…
<webm:invoke>
<webm:onsuccess>
<table>
<tr> <td>id</td> <td>name</td> <td>Qty</td></tr>
<tr>
<webm:loop>
<td><webm:value></webm:value></td>
<td><webm:value></webm:value></td>
<td><webm:value></webm:value></td>
</webm:loop>
</tr>
</webm:onsuccess>
<webm:onfailure>
</webm:onfailure>
</webm:invoke>
here app:flow just produce the result of select adapter service.

when i tried to run this one only the table is shown nothing else…
what may be the problem?
what i have to set the jsp to invoke the service.?
please help me…

Hi, Usage of invoke tag is wrong… Proper usage will look like this…

<webm:invoke serviceName=“com.company.project.release.module:getUserStatusAndDocType”>
Thanks
Agas