Guide 5: Deploying the client app separately – PB Docs 2022
Guide 5: Deploying the client app separately When you deploy the installable cloud app from the PowerBuilder IDE, the client app is by default deployed together with the Web APIs: When deploying to the built-in Kestrel server, the client app is deployed to the wwwroot folder within the Web APIs (for example, %username%source epossalesdemo_cloudServerAPIswwwroot). When…
GetHttpRequestHeader – PB Docs 2022
GetHttpRequestHeader PowerScript function Description Gets the HTTP request header. This function is only effective in the installable cloud application deployed with PowerServer. Applies to Application object Syntax
|
1 |
applicationname.GetHttpRequestHeader ( string headerName ) |
Argument Description applicationname The name of the application object in which you want to get the request header headerName A string whose value is the header name…
App cannot run because the local version expired – PB Docs 2022
App cannot run because the local version expired The following error occurs when trying to run the installable cloud app. Solution: Remove the application from the client (for example, %AppData%PBAppsApplicationslocalhost_salesdemo_cloud) and then run the application again. Document get from Powerbuilder help Thank you for watching.
GetItemObject – PB Docs 2022
GetItemObject PowerScript function Syntax 1: GetItemObject ( ParentItemHandle, Key ) Syntax 2: GetItemObject ( ItemPath ) Syntax 1 Description Gets the handle value of the child item whose type is object. Applies to JSONParser objects Syntax
|
1 |
objectname.GetItemObject ( ParentItemHandle, Key ) |
Argument Description objectname The name of the JSONParser object whose child object item you want to obtain. ParentItemHandle…
Runtime error numbers – PB Docs 2022
Runtime error numbers The following table lists the runtime error numbers, the meaning of each number, and solutions (if available): Number Meaning Solution R0220 General session error. View solution R0221 Session creation failed. (HTTP error). View solution R0222 Session not created. Please create a session using BeginSession. View solution R0223 Session fails to respond (Invalid…
GetItemByTag – PB Docs 2022
GetItemByTag PowerScript function Description Gets an item according to its tag in the RibbonBar control. Applies to RibbonBar control Syntax
|
1 |
controlname.GetItemByTag ( String Tag, ref PowerObject Item ) |
Argument Description controlname The name of the RibbonBar control. Tag The tag value of the item you want to obtain. Item A PowerObject variable in which you want to store the item identified by…
Changing the INI file etc. – PB Docs 2022
Changing the INI file etc. After the application is installed to the server, you can change the external files using the command-line tool (CustomizeDeploy.dll) which is located in the application folder on the server. The “External Files” refers to the packages, folders, and files (such as INI files, DLL/OCX, images etc.) that are configured in…
GetPosByPageIndex – PB Docs 2022
GetPosByPageIndex PowerScript function Description Gets the page index of the table of content in the PDF document. Applies to PDFTableOfContents object in Objects and Controls Syntax
|
1 |
long GetPosByPageIndex() |
Return value Long. Returns the page index of the table of content in the PDF document. Usage Call the function to get the page index of the table…
Cannot push image to Azure Container Registry – PB Docs 2022
Cannot push image to Azure Container Registry Make sure you’re logged in into your Azure account:
|
1 |
az login |
and into the Container Registry:
|
1 |
az acr login --name <name of the container registry> |
Document get from Powerbuilder help Thank you for watching.
GetOverflowPageText – PB Docs 2022
GetOverflowPageText PowerScript function Description Returns the overflow content of the PDFRichText/PDFMultilineText object that cannot display in the current page. Applies to PDFMultilineText object in Objects and Controls PDFRichText object in Objects and Controls Syntax
|
1 |
PDFSharedText GetOverflowPageText() |
Return value PDFSharedText object in Objects and Controls. Returns a PDFSharedText object that carries the overflow content if the PDFRichText/PDFMultilineText…