BBjAppServer::getAllAppNames

Description

In BBj 12.0 and higher, returns the names of all applications publishedBBjAppServer.

Syntax

Return Value

Method

BBjVector

getAllAppNames()

Parameters

None.

Return Value

Returns a vector of all published application names.

Remarks

None.

Example

rem ' BBjAppServer::getAllAppNames()

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
vector! = appServer!.getAllAppNames()
if (vector!.size()) then
    for i = 0 to vector!.size() - 1
        print vector!.get(i)
    next i
endif

See Also

BBjAPI

BBjAppServer

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.