<webm:usePipeline>
You use the <webm:usePipeline> tag to make the current Integration Server pipeline available to the JSP in Java code as an IData variable named webm_pipe.
Syntax
<webm:usePipeline>block_of_code</webm:usePipeline>
Example
This code prints the contents of the current pipeline in one long string to the HTML page produced from the JSP.
<webm:usePipeline>
<% System.out.println ("pipeline is:" + webm_pipe.toString()); %>
</webm:usePipeline>