Search results

  1. Stefan

    No tcman command

    tcman is the instance specific version, it will be in your <pas-instance>/bin folder. It is copied along with the rest of the instance from <dlc>\servers\pasoe To create an instance use pasman
  2. Stefan

    Question Weak spot

    Eclipse Jetty is the web server used by OpenEdge Explorer in 11.7. In 12.2 it became just another PASOE instance. It's port, 9090, should not be open to everyone. As to updating Jetty... 11.7's retirement date is in April 2025 - so this may be the time to upgrade to 12.2 or 12.8.
  3. Stefan

    How to release record locks in a repeat block inside a do transaction block

    Architectural flaws are not a detail that can be fixed by fine-tuning.
  4. Stefan

    Question OpenEdge 12.8 Linux and .NET proof of concept

    My bad, the container is running Debian/GNU Linux 8 - ProgressAblDojo which seems to be using Linux kernel 3.16 which is rather old.
  5. Stefan

    Question OpenEdge 12.8 Linux and .NET proof of concept

    No, 12.8 is not yet supported on the Linux platform that ABLDojo is running on. As per that doc a bunch of Linux flavours were added to the 12.8 supported list per May 1st, but I think ABLDojo was running on Ubuntu.
  6. Stefan

    Question OpenEdge 12.8 Linux and .NET proof of concept

    Progress ran into their desupport of the Linux version ABLdojo is running on. :-)
  7. Stefan

    Question OpenEdge 12.8 Linux and .NET proof of concept

    I cannot comment on the compatibility, but your hex encoded strings did intrigue me. You only need to escape tilde (~), opening curly brace ({) and backslash (\) to keep it legible: patternBas = string( hex-decode(...
  8. Stefan

    Question Change color for the loading progressbar

    If you add [ code ] [ /code ] tags around your code you make it readable by not losing indentation and as an added bonus you get no emoji nonsense. /* progressb1 */ /* */ THIS-OBJECT:progressb1:BackColor = System.Drawing.SystemColors:Control. THIS-OBJECT:progressb1:ForeColor =...
  9. Stefan

    Error Unable to send Json API with special characters through socket

    Please either put [ code ] [ /code ] tags around your code or insert it using the code icon:
  10. Stefan

    Question Connecting to Progress database thru IBM Cloud Secure Gateway client

    Ports That Must Be Open to Make an ODBC, Data Transfer, OLE DB, ADO.Net, or JDBC Connection through a Firewall :)
  11. Stefan

    Issues after installing the service pack 11.7.19

    You did download the same bit version? (I would expect installer to fail, but you never know) Your windows folder should contain logs of your update - oesetup11719.log and oesetup11719log.1 - do these show any errors? Do you get the error before or after choosing a workspace? Do you get the...
  12. Stefan

    How to trim Progress Application Server agents ?

    If you have the oemanager deployed you can call the REST API, for example using curl: curl http://localhost:8080/oemanager/applications/<appserver>/agents/all/sessions --insecure --request DELETE --user tomcat:tomcat
  13. Stefan

    Comment ABL Toast Notifications

    A custom URI scheme could be a puzzle piece. Disclaimer: I have never tried it.
  14. Stefan

    Upgrade from 9.1E to 12.8 (Windows)

    I think error 5553 is a red herring, this will occur when you try to define a temp-table like something unknown (also with 9.1E). DEFINE TEMP-TABLE ttfoo NO-UNDO LIKE ttfoo. Based on other errors in your compile log like: Compiling \\ariesn\aries\Shz\A-Cust\addcoi.p Unknown or ambiguous...
  15. 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...
  16. 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...
  17. 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...
  18. 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.
  19. 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.
  20. Stefan

    Create Random String

    message guid.
Back
Top