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

PB Docs 2022

How to switch to the test mode – PB Docs 2022

How to switch to the test mode Open the Applications.json file in the compiled Web APIs > AppConfig folder (or the solution > UserExtensions project > AppConfig folder). Change the “RunMode” attribute value from “0” to “1”. With the “RunMode” set to 1, when the installable cloud app is started, the app will prompt the…

Importing the production license – PB Docs 2022

Importing the production license If you are deploying to a production server, you might want to use a production license for PowerServer, instead of using a developer license. To use a production license, you will need to export the license file from the Appeon web site and then import the license to the PowerServer project….

Deploying the project – PB Docs 2022

Deploying the project Save the PowerServer project settings; and build and deploy the PowerServer project (using the Build & Deploy Project button) for the changes to take effect. Make sure the deployment is successful. If you encounter any permission errors (similar to below) during the deployment process, check the Troubleshooting Guide for solutions.

When…

LoadAll – PB Docs 2022

LoadAll Loads all cache groups (and caches in it). Syntax: GET /api/Connection/LoadAll PowerScript code example:

When successful, it returns the response status code 200 and the following response body. View here for details about the parameters in the response body. When failed, it returns 400 (bad request), 401 (unauthorized), or 500 (server error).

Edit – PB Docs 2022

Edit Edits a cache. Syntax: POST /api/Connection/Edit/{cacheGroup} {cacheGroup} indicates the cache group where the cache will be modified, for example, Default. PowerScript code example: For details about the parameters in the JSON string, view here.

When successful, it returns the response status code 200 and the following response body: When failed, it returns 400…

Correlating the transaction ID – PB Docs 2022

Correlating the transaction ID Similar to the session ID, you can first add a Regular Expression Extractor to save the transaction ID into a local variable; and then add a BeanShell PostProcessor to set the local variable as a global property, so that it can be shared in all thread groups. To add a Regular…

Correlating the session ID – PB Docs 2022

Correlating the session ID To correlate the session ID, you can use the following a Regular Expression Extractor that saves the session ID into a local variable a BeanShell Sampler that calls the “setProperty” function to set the local variable as a global property, so that it can be shared in all thread groups In…

LoadOne – PB Docs 2022

LoadOne Loads a cache. Syntax: GET /api/Connection/LoadOne/{cacheGroup}/{cacheName} {cacheGroup} indicates the cache group name, for example, Default. {cacheName} indicates the cache to be loaded, for example, Sales. PowerScript code example:

When successful, it returns the response status code 200 and the following response body. View here for details about the parameters in the response body….

Deploying the PowerServer project – PB Docs 2022

Deploying the PowerServer project Step 1: Click the Save button () in the toolbar. Step 2: Click the Build & Deploy Project button () in the toolbar to build and deploy the project. Step 3: Make sure the deployment is successful. If you encounter any errors during the deployment process, check the Troubleshooting Guide for…

Configuring SSL on IIS – PB Docs 2022

Configuring SSL on IIS It is highly recommended that you configure Secure Sockets Layer (SSL) for IIS, so that HTTPS can be used to secure the connections between the client and IIS. For how to configure SSL on IIS, refer to https://docs.microsoft.com/en-us/iis/manage/configuring-security/how-to-set-up-ssl-on-iis. Document get from Powerbuilder help Thank you for watching.