Application Platform 10.3 | Application Platform API | webMethods Tag Library for JSP | webMethods Tag Library Summary
 
webMethods Tag Library Summary
This section provides a summary of the tags in the webMethods tag library.
Note:
Tags are case sensitive. In your JSP, you must type them exactly as shown in this section (for example, <webm:comment>, not <WEBM:COMMENT> or <Webm:Comment>).
The following table lists and describes each tag from the webMethods tag library.
Tag
Description
<jsp:include>
Inserts a text file in the JSP. At run time, Integration Server inserts the contents of the specified file in the JSP and processes the tags that the file contains. For more information, see <jsp:include>.
<webm:comment>
Adds a comment to the JSP. For more information, see <webm:comment>.

<webm:ifvar>

<webm:then>

<webm:else>
Executes a block of code in the JSP if a specified condition is met. The condition can be either that a certain variable exists or that a variable has a particular value in the Integration Server pipeline. You can also define a block of code to be executed if the specified condition is not met. For more information, see <webm:ifvar>.

<webm:invoke>

<webm:onError>

<webm:onSuccess>
Calls an Integration Server service. You can also define different blocks of code to be executed if the service completes without errors and if the service fails. Integration Server runs the specified service at run-time and returns the results of the service to the JSP. For more information, see <webm:invoke>.

<webm:loop>

<webm:loopsep>
Executes a block of code in the JSP once for each element in a specified Document, Document List, or String List in the Integration Server pipeline. You can insert a specific character sequence between the results from the <webm:loop> tag in the HTML page produced from the JSP. For more information, see <webm:loop>.
<webm:nl>
Generates a newline character on the HTML page produced from the JSP. For more information, see <webm:nl>.
<webm:rename>
Renames or copies a variable in the Integration Server pipeline. For more information, see <webm:rename>.
<webm:scope>
Limits the variables in the Integration Server pipeline that are available for a specified block of code in the JSP. For more information, see <webm:scope>.

<webm:switch>

<webm:case>
Executes one of multiple blocks of code, based on the value of a variable in the Integration Server pipeline. For more information, see <webm:switch>.
<webm:sysvar>
Inserts a special variable or server property into the HTML page produced from the JSP. For more information, see <webm:sysvar>.
<webm:usePipeline>
Transforms the current Integration Server pipeline available in the Java code to an IData variable called webm_pipe. For more information, see <webm:usePipeline>.
<webm:value>
Inserts the values of one or more variables from the Integration Server pipeline into the HTML page produced from the JSP. For more information, see <webm:value>.