|
Description:
Display current status of application server.
Source: Text Source
proc showServerStatus {} {
puts "\nStatus of servers in the domain:\n"
foreach ejbserver [ApplicationServer list] {
set serverInfo($ejbserver) [ApplicationServer show $ejbserver -attribute {Name CurrentState}]
puts $serverInfo($ejbserver)
}
}
The license for this recipe is available here.
Discussion:
Called by top level WSCP scipts to display confirmation of app server start/stop scripts.
|