Appeon Comunidad

Preguntas y Respuestas Comunidad de Appeon
Appeon Community
  1. Hello everyone,

    I am on PB2022/3289 and building for PowerServer. How do I create a folder using the CreateDirectory function?

    Is it possible to create a multifolder path like:

    C:\user1\temp\logfiles 

     

    With just one call or do I have to create folders one at a time?

     

    Thank you,

  2. When running the compiler with this command...

    pbautobuild220.exe /f \src\cactus.json /l Log_PBBuild.log /le Log_PBError.log

    ...we get this error output:


    14:14:50 [Normal] PBAutoBuild Version: 22.2.0.3289.
    14:14:50 [Normal] Work Path: C:\src\AppeonBinaries\PowerBuilderUtilities 22.0\pbautobuild220.exe.
    14:14:50 [Normal] Runtime Version: 22.2.0.3289.
    14:14:50 [Normal] Start processing parse json to model code segment.
    14:14:50 [Normal] End processing parse json to model code segment.
    14:14:50 [Normal] Start processing download source code segment.
    14:14:50 [Normal] End processing download source code segment.
    14:14:50 [Normal] Start processing compile segment.
    14:14:50 [Normal] Start compiling the source code.
    14:14:50 [Error] Failed to load the library "PBORC.dll". Error message: The specified module could not be found.
    14:14:50 [Error] Failed to load the library "PBDEV.dll". Error message: The specified module could not be found.
    14:14:50 [Error] Failed to compile the target file. File name: \src\cactus_ii.pbt
    Bye (-_-)

     

    We are building a Docker image to do our PowerBuilder builds using the aforementioned command line, which works on my host machine just fine.  So far, we are just starting with an empty Windows container and trying to "Docker Exec -it <container> CMD" into it and run the commands manually.  We have a volume mount which contains our project source code and also the PowerBuilder-2022 R3-3289-EN-GA installer files.  We install the runtime first with this command:

    SilentInstall.bat opt=PBRT log=c:\pbinstall_logs dir=c:\app

    Then we run it again to install the utilities (?) with this command:

    SilentInstall.bat opt=PBU log=c:\pbinstall_logs dir=c:\app

    Both commands put files into the appropriate default directories (although they are ignoring my "dir=c:\app" parameter).

    All of the files that it complains about are present and were introduced by the silent install process so they should be the right versions in the right place.  I have also added various directories to the system path to try to help but it has no effect.

     

    Here is my dockerfile content:


    #--------

    FROM mcr.microsoft.com//dotnet/sdk:8.0.101-windowsservercore-ltsc2019

    WORKDIR /pbinstall_logs
    WORKDIR /app
     
    WORKDIR /src
    WORKDIR /output
    WORKDIR "/c/src/AppeonBinaries/PowerBuilderUtilities 22.0"
    # This works to keep the container alive so we can docker "exec -it <imagename> cmd" into it from another console.
    USER ContainerAdministrator
    ENTRYPOINT ["CMD", "/c ping -t localhost > NUL"]
    * --------

    Here are my commands to work with the container:
    docker run -it -v .\:c:\src --rm --name pbbuildcontainer powerbuilder2022
    docker exec -it pbbuildcontainer cmd
  3. Hello, I am following the steps listed here for implementing Azure App Services: https://docs.appeon.com/ps2022r3/steps_summary.html

    I am on the part where I am installing the Static Web App here: https://docs.appeon.com/ps2022r3/deploying-the-cloud-app-2.html

    I successfully deployed using Static Web Apps CLI (the operation completed fully). However, when I try to finally launch the app from the Azure URL, I receive the following error. None of the Powerserver documentation addresses this error at all.  Any ideas on how I could fix this? Thank you!

     

    After clicking Ignore until the end, it shows this:

  4. It's possible to use our nexus oss to download informix driver ?!

    I try to create db connection and SnapDevelop try to download informix driver from nuget.org.

    How to change setting to use our nexus oss to download informix drvier ?!

  5. After using the theme background, I need to dynamically modify the background color of the ST control, but unfortunately it cannot be modified. Is there any way to modify it