Search results

  1. Stefan

    Answered Question on xcoding

    signature-value was added in OpenEdge 12, so I do not think it will help you with your case, it's predecessor md5-value needed to be enabled by compiling with generate-md5. So if you did compile all versions of your r-code with generate-md5, then md5-value could help you to compare which are...
  2. Stefan

    OE Studio / GitHub integration

    Eclipse General / Workspace preference 'Refresh using native hooks or polling' combined with build automatically is a major file locker, but this stuff is useful for normal work, it can just get awfully in the way when changing branches. With 12.5+ there is even more tooling building models of...
  3. Stefan

    OE Studio / GitHub integration

    PDSOE 12.x with EGit works. PDSOE / EGit can be somewhat frustrating when doing Git stuff. PDSOE often jumps onto files to compile them, locking them resulting in EGit failing due to locked files, leaving a mess in your working tree. When your working tree was clean before you started you can...
  4. Stefan

    Answered Question on xcoding

    There is a paid service available at Recover 4GL/ABL source code encrypted by PROGRESS Xcode utility - the owner is member pdecode on this forum. Disclaimer: I have never used this service.
  5. Stefan

    Copying a Procedure Library

    Pretty sure the answer is yes. We do it the other way round, pls created on windows are (also) deployed to Linux.
  6. Stefan

    Create Random String

    message guid.
  7. Stefan

    Skipping An Unavailable Record

    A simple available cubpackconv should be sufficient: icbccnt = 0. for each ttcbc no-lock: assign lv_size = '' lv_back = '' lv_cup = '' . if item.backsize > '' then do for cupbackconv: find first cupbackconv no-lock where cupbackconv.inentity =...
  8. Stefan

    PASOE resources not getting released

    Not sure if this applies to you, but beware that there is a difference between a PASOE dev(elopment) and a PASOE prod(uction) instance. The dev instance will clean up all sorts of things whereas the prod instance will not, since it starts a singleton - see this article.
  9. Stefan

    Question ABL Wordle Application

    Although this hard-coded imagepath sucks: &SCOPED-DEFINE ImagePath "C:\Users\jdpja\OneDrive\Work Stuff\Saved Stuff\images\":U
  10. Stefan

    Progress Editor Temporary file

    Imagine you are able to lock down the .ped files, what are you going to when you find a .ped file with contents: run mindyourownbusiness.p Fire the user and hope they did not do anything too malicious?
  11. Stefan

    Question ABL Wordle Application

    Colors can be set dynamically using the color-table system handle. Unfortunately the same does not apply to the font-table system handle:
  12. Stefan

    Question ABL Wordle Application

    Nice and ouch, I would not want to be trampling over another application's fonts and colors. Develop it as a single .Net GUI .cls file instead?
  13. Stefan

    purge and resize db

    If you are starting the backup using the Windows Task Scheduler beware that this defaults the task priority to low, killing backup performance even when the system is doing nothing else - see Progress Knowledge Base article P169922
  14. Stefan

    Add and read CDATA into and from a XML file

    Only SAX supports cdata, see the write-cdata method. DOM may support cdata, since the create-node method does allow cdata as subtype. Read-xml and write-xml both do not support cdata, see archived community post, the enhancement request Jens created received four votes and has status 'Will not...
  15. Stefan

    Question How to calculate a X509 certificate's issuer name hash

    Why can you not assume? Is sslc not part of your client progress installation?
  16. Stefan

    Question Progress 9.1E and IBM AIX version

    See manual xcode utility: and from the notes section
  17. Stefan

    Question Progress 9.1E and IBM AIX version

    google: site:progress.com product availability 9.1e aix Provides Which versions of OpenEdge are supported against what AIX platform versions, which contains:
  18. Stefan

    Locking up when inactive?

    From the notes section of the disconnect statement manual:
  19. Stefan

    Locking up when inactive?

    Looks like the connection between PASOE and your database was lost / snipped? What does your database log show?
  20. Stefan

    Question Openedge HTTP client - Supported ciphers.

    I used the OpenSSL manual. As to which ciphers are actually used when you allow two, I'm not sure if this shows up with logging-level 5. Maybe this will show in Fiddler.
Top