Connection Information

To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.

Connection Type

PB Docs 2022 – Page 6 – PowerBuilder Library

PB Docs 2022

Configuring the server profile – PB Docs 2022

Configuring the server profile Step 1: In the PowerServer project painter, select the Deploy page > Basic tab. Step 2: Select External as the target run mode, select IIS as the target server, and then click the Configuration button. Step 3: In the Server Profiles window, click the New button. Step 4: In the New…

Configuring SSL on Apache – PB Docs 2022

Configuring SSL on Apache It is highly recommended that you configure Secure Sockets Layer (SSL) for the server, so that HTTPS can be used to secure the connections between the client and the server. For how to configure SSL on Apache, refer to https://httpd.apache.org/docs/2.4/ssl/. Document get from Powerbuilder help Thank you for watching.

Configuring IIS – PB Docs 2022

Configuring IIS This section is to configure IIS to 1) support remote connections and 2) allow the Windows user or IIS manager to connect to the site during deployment. Step 1: Enable remote connections for the IIS server. In IIS Manager, select the server’s node in the Connections panel, and then double click Management Service…

Configure the database connection – PB Docs 2022

Configure the database connection Tutorial: Connecting to the Database provides step-by-step instructions for how to connect to different types of database from the PowerBuilder IDE. The following uses the SQL Anywhere database as an example. To configure the database connection in the PowerBuilder IDE: In the PowerServer project painter, select the Database page > Basic…

Configuring SSL on Nginx – PB Docs 2022

Configuring SSL on Nginx It is highly recommended that you configure Secure Sockets Layer (SSL) for the server, so that HTTPS can be used to secure the connections between the client and the server. For how to configure SSL on Nginx, refer to http://nginx.org/cn/docs/http/configuring_https_servers.html. Document get from Powerbuilder help Thank you for watching.

Client PC – PB Docs 2022

Client PC To run the installable cloud app, make sure your system meets the following requirement. Hardware: Intel or AMD processor ARM and other processors are NOT supported. Software: Windows 11 or 10 or Windows Server 2022, 2019, or 2016 Google Chrome, Mozilla Firefox, or Microsoft Edge (Chromium-based) Document get from Powerbuilder help Thank you…

Configuring Apache – PB Docs 2022

Configuring Apache This section is to configure Apache as a reverse proxy server in a Linux machine. Step 1: Go to the /etc/httpd/conf folder and open the httpd.conf file in a text editor. Step 2: Add the following scripts to the end of the httpd.conf file. This is to configure Apache as a reverse proxy…

Configuring the database connection – PB Docs 2022

Configuring the database connection If your database and Web APIs reside in different servers, you will need to create a database cache so that the Web APIs can connect with the remote database at runtime. Step 1: In the PowerServer project painter, select the Database page > Advanced tab, click New in the upper part…

Configuring Nginx – PB Docs 2022

Configuring Nginx This section is to configure Nginx as a reverse proxy server in a Linux machine. Step 1: Go to the /etc/nginx/ folder and open the nginx.conf file in a text editor. Step 2: Locate the “server” block and add another “server” block as shown below. This is to configure Nginx as a reverse…

Add an INI file – PB Docs 2022

Add an INI file Create an INI file in the same location as the PBT file and name it CloudSetting.ini. Specify the URL for requesting the token from the JWT server in the CloudSetting.ini file. Notice that TokenURL points to the “/connect/token” API of the built-in JWT server, and the JWT server root URL (for…