What settings can be modified in the solution – PB Docs 2022
What settings can be modified in the solution The AppModels and ServerAPIs.Tests projects should NOT be modified after generation. Only a few settings in the ServerAPIs and UserExtensions projects can be modified. Note: For any setting that is not specified in the following table, please DO NOT modify it. Settings that can be modified Where…
What settings will be deployed to the solution – PB Docs 2022
What settings will be deployed to the solution Although the PowerServer C# solution allows you to make changes to it, you will have to be aware that some settings in the solution might be updated every time when the PowerServer project is built and deployed in the PowerBuilder IDE. PowerServer project settings Will be updated…
Why parameterization and correlation are required – PB Docs 2022
Why parameterization and correlation are required Parameterization and correlation are required for unique/dynamic values that are generated by the server. In the case of PowerServer, the access token, session ID, and transaction ID are all unique/dynamic values generated by PowerServer at runtime. If you re-play the scripts without first changing the value recorded, the scripts…
Why test mode is required – PB Docs 2022
Why test mode is required The main dynamic values in the recorded script for installable cloud apps are “sessionid” and “transactionid”. Both values are dynamic and can only stay valid for a short time, therefore, it is necessary to capture them and save them into variables in the script. Specially, about “sessionid”: Because all the…
Window is slow to open – PB Docs 2022
Window is slow to open Under some circumstances, for example, a large application that contains lots of PBLs and the window uses user-defined images, the window may be slow to open in the application (deployed via PowerClient or PowerServer). Cause: The application will first search through all PBD files and then the application directory to…
View API docs in Swagger UI – PB Docs 2022
View API docs in Swagger UI The documentation for PowerServer Management APIs is exposed using Swagger UI. Each API is described with the operations (GET, POST, etc.) and the operation parameters; and developers can directly test the API from Swagger UI. To view the API documentation in Swagger UI, run the ServerAPIs project from the…
With Azure Storage – PB Docs 2022
With Azure Storage Contents Enabling Static Web Site Downloading AzCopy Deploying the Cloud App Azure also offers a cheap alternative to hosting static content. See here for more details. Document get from Powerbuilder help Thank you for watching.
64-bit database cannot be connected from IIS – PB Docs 2022
64-bit database cannot be connected from IIS When connecting with a 64-bit database (such as informix, ASE etc.) from the PowerServer Web APIs that runs in the same process as its IIS worker process (in-process hosting), the following error occurs:
|
1 |
ERROR [IM014] [Microsoft][ODBC Driver Manager] The specified DSN contains an architecture mismatch between the Driver and Application |
Cause: A 32-bit (x86) self-contained deployment published with a 32-bit SDK that uses the…
With Static Web App – PB Docs 2022
With Static Web App Contents Creating the Static Web App Installing SWA CLI Specifying the Web API URL Deploying the Cloud App Document get from Powerbuilder help Thank you for watching.
web.config – PB Docs 2022
web.config web.config is used by IIS to start the PowerServer Web APIs (an ASP.NET Core application). It configures which ASP.NET Core application should be invoked and what is the hosting model for the application in the IIS server. It will be ignored when deployed to non-IIS servers. The web.config file must be in the web…