BBjJettyServerConfiguration::refreshSSL

Description

In BBj 26.02 and higher, this method reloads the SSL certificate/keystore for the specified port on the live server, without restarting BBjServices or dropping existing connections.

Syntax

Return Value Method
void refreshSSL(string port)

Parameters

Parameter Description
port Specifies the SSL port number for which to reload the certificate, as configured in jetty.xml.

Remarks

None.

Example

declare BBjAPI api!
    declare BBjAdmin admin!
    declare BBjJettyServerConfiguration config!
    api! = BBJAPI()
    admin! = api!.getAdmin("admin","admin123")
    config! = admin!.getJettyServerConfig()
    config!.refreshSSL("8443")

See Also

BBjAPI

BBjJettyContextConfiguration

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