Search results

  1. Stefan

    4GL code to copy a value to windows clipboard

    I generally just use google with a site filter to search progress.com: site:docs.progress.com output clipboard Output to the clipboard.
  2. Stefan

    Question Command to stop PAS

    Start (pun intended) at pasoestart, and yes you are wrong about tcman being v12 related. Note that you can filter documentation on version.
  3. Stefan

    Question passing parameter to a progress 4gl file using prowin32

    The program you run from the command line cannot have any input parameters. -param will not pass input parameters, it will set session : parameter which you can use in a wrapper: run your.p ( entry( 1, session:parameter ), entry( 2, session:parameter ) ).
  4. Stefan

    Question OPenEdge OpenEdge.Net.HTTP performance issue

    Are you deploying source code? We deploy 11.7, 12.2 and 12.8 r-code, so it would be: assign cSSLProtocols[1] = 'TLSv1.2':u &if proversion >= '12.8' &then cSSLProtocols[2] = 'TLSv1.3':u &endif But I do have my doubts about the protocol order, I would want 1.3 first if it can be...
  5. Stefan

    Question OPenEdge OpenEdge.Net.HTTP performance issue

    So by restricting to TLS v1.2 you are not silently hanging on TLS v1.3 and now back into "normal" error territory - see Progress Customer Community
  6. Stefan

    Question OPenEdge OpenEdge.Net.HTTP performance issue

    Check ciphers and transport protocols. These can be restricted by code or by environment variables - see Progress Customer Community There have been mismatches between what sslc supports and what the ABL socket supports. TLS 1.3 being an earlier troublemaker.
  7. Stefan

    Invalid version of LoggerBuilder

    1. check your propath - are you referencing 11.7 libraries 2. message search( 'OpenEdge/Logging/LoggerBuilder.r' ).
  8. 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
  9. 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.
  10. 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.
  11. 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.
  12. 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.
  13. Stefan

    Question OpenEdge 12.8 Linux and .NET proof of concept

    Progress ran into their desupport of the Linux version ABLdojo is running on. :-)
  14. 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(...
  15. 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 =...
  16. 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:
  17. 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 :)
  18. 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...
  19. 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
  20. Stefan

    Comment ABL Toast Notifications

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