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 721 – PowerBuilder Library

PB Docs 2022

Testing the application – PB Docs 2022

Testing the application Test the application by accessing the application URL in the Web browser, for example, https://pbexam.appeon.com/demok8s If the download does not start automatically, click Download the Launcher to download and install the cloud app launcher first, and then click Start the Application to download, install, and start the application. Document get from Powerbuilder…

Setting up static database connection for the app runtime – PB Docs 2022

Setting up static database connection for the app runtime Contents Creating transaction-to-cache mappings in the IDE Managing transaction-to-cache mappings in PowerServer Static database connection means the connection configuration (including connection cache settings, and transaction-to-cache mappings) is created before the app is run. The connection configuration is initially created in the project painter > Database page…

Steps Summary – PB Docs 2022

Steps Summary In a few words, in order to deploy a PowerServer project into Azure containers: Create a PostgreSQL Flexible Database on Azure Upload the data to the Database through a remote connection Create the .NET App Service for the Web APIs on Azure Plug in the URLs of the Database container and the App…

Session creation failed – PB Docs 2022

Session creation failed Contents SSL certificate common name is incorrect Failed to send the request Internal Server Error (HTTP status code: 500) Not Found (HTTP status code: 404) The following error might occur when you run an installable cloud app: Session creation failed. Document get from Powerbuilder help Thank you for watching.

Setting up the database server – PB Docs 2022

Setting up the database server Contents Preparations Configuring Windows Defender Firewall Starting the database Document get from Powerbuilder help Thank you for watching.

rowsupdated value – PB Docs 2022

rowsupdated value When the column is set to not updatable (as shown below), modifying the column data and then performing an update will cause the rowsupdated argument of the UpdateEnd event to: Return 1 in PowerBuilder, but actually no update statement is generated at all. Return 0 in PowerServer, indicating that no rows are updated….

Roll back to an earlier version of app – PB Docs 2022

Roll back to an earlier version of app Suppose you have deployed four versions: 1.01, 1.02, 1.03, & 1.04, and now want to roll back to 1.02. Step 1: Go to the server root and make a backup of the versions that you are going to roll back to or undeploy in the subsequent steps….

Download the database driver – PB Docs 2022

Download the database driver You must select the database provider and agree to the driver license terms as the driver must be downloaded from the NuGet site to the development PC and PowerServer later. Unlike the traditional client/server app which directly connects with the database through a local driver, the installable cloud app relies on…

RibbonBar control displays blank – PB Docs 2022

RibbonBar control displays blank In the installable cloud app, the RibbonBar control displays blank. Cause: The script file (XML/JSON) that is used to create the RibbonBar control is not selected and deployed with the project. Solution: 1. Open the PowerServer project object, go to the Application page, select Files preloaded in uncompressed format and then…

Select Lock – PB Docs 2022

Select Lock In REST APIs, each request must contain all of the information necessary to understand the request, and cannot take advantage of any stored context on the server. This is known as the stateless constraint of REST. Stateless does not mean there is no state; but the state is maintained on the client side…