ServerInfo
Contains information about the server. ServerInfo is rendered in XML as a
<server-info>
element.
The <server-info>
element
Child elements
- <classpath>
- The classpath of the server, as a list of
<classpath-entry>
elements containing the entry.
- <plugins>
- A list of plugins installed on the XL Deploy server. This is a list of
<plugin-info>
elements.
- <version>
- The version of the XL Deploy Server.
Attributes
- plugin
- The name of the plugin.
- version
- The version of the plugin.
Example
<server-info>
<classpath>
<classpath-entry>./libs/server-api-3.8.0.jar</classpath-entry>
<classpath-entry>./libs/server-core-3.8.0.jar</classpath-entry>
...
</classpath>
<plugins>
<plugin-info plugin="jee-plugin" version="3.8.1"/>
<plugin-info plugin="generic-plugin" version="3.8.0"/>
...
</plugins>
<version>3.8.0</version>
</server-info>