BBjApplication::getConfigFile

Description

In BBj 12.0 and higher, this is the name of the config.bbx file to use for this application.

Syntax

Return Value

Method

string

getConfigFile()

Parameters

None.

Return Values

Returns the config.bbx file name.

Remarks

None.

Example

rem ' BBjApplication::getConfigFile

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

See Also

BBjAPI

BBjAppConfig

BBjAppServer

BBjApplication

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