Application Platform 10.3 | Application Platform API | webMethods Tag Library for JSP | <webm:usePipeline>
 
<webm:usePipeline>
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
To print the contents of the current pipeline in a single long string to the HTML page produced from the JSP:
<webm:usePipeline>
<% System.out.println ("pipeline is:" + webm_pipe.toString()); %>
</webm:usePipeline>