<webm:sysvar>
You use the <webm:sysvar> tag to insert a special variable or server property into the HTML page produced from the JSP.
Syntax
<webm:sysvar variable="system_variable"/>
Arguments
Argument | Description |
system_variable | System variable or property to insert. Valid values: host - name of the Integration Server that processed the JSP date - current date in the format “Weekday Month Day HH:MM:SS Locale Year”. For example, "Fri Aug 12 04:15:30 Pacific 1999". property(property) - current value of the Integration Server property property. For example, watt.server.port or a Java system property like java.home. For a list of properties, see the webMethods Integration Server Administrator’s Guide. |
Examples
To insert the name of the
Integration Server that processed the JSP into the HTML page:
Response generated by host <webm:sysvar variable="host"/>
To insert the value of the
Integration Server property
watt.server.port, which identifies the main HTTP listening port of
Integration Server into the HTML page:
<p>
<webm:sysvar variable="host"/> was listening on
<webm:sysvar variable="property(watt.server.port)"/>
</p>