Recent content by peterjudge

  1. peterjudge

    Progress with XML or JSON ?

    PASOE does this, for error messages. JSON and HTML but @Cecil 's point stands .
  2. peterjudge

    OE Studio / GitHub integration

    In general terms, I don't use Eclipse's SCM plugins. They always seems to clash with each other (SVN and ClearCase in particular). I use a standalone tool for SCM and Eclipse for coding. With VS Code the integration seems better thought-out and/or implemented, and SCM seems more of a...
  3. peterjudge

    Question How do I use Windows Hello Authentication (Windows.Security.Credentials)

    You can usually find assemblies on on nuget (https://nuget.info/packages) but it doesn't look like there's a Microsoft-published version on there. Or even a .net 4 version ...
  4. peterjudge

    Understanding IF NOT AVAILABLE STATEMENT

    The FOR EACH block will only show available records. There are cases where this is not the case for joined tables, but for the first table in the query, you will always see records from that first table. If the contents of the FOR EACH block do not execute at least once, then there are no...
  5. peterjudge

    Progress Downloads

    I think there an email address in the ESD site for help with that site. I think it's com-global@progress.com they were really responsive when I last contacted them.
  6. peterjudge

    Question Does Progress provide a utility to update ADM2 apps to use new PAS appserver?

    There's not a lot that needs doing ... you need to update the connection information in appsrvtt.d (to use the -URL syntax). Make sure that the PROPATH in PASOE points to the right place. And that is just about it.
  7. peterjudge

    Progress with XML or JSON ?

    JsonObjects are 11.0 and later. I think (per History of Progress Versions | The OpenEdge Hive) that WRITE-JSON on temp-tables and ProDataSets was 10.2B. If you can use those depends on whether the required data is in a "dataset format". As @Hikmet_Alemdaroglu says, writing JSON isn't that hard...
  8. peterjudge

    How to write a xml file using break by

    The temp-table and dataset WRITE-XML (and WRITE-JSON) methods write out the entire contents of the dataset/temp-table. You would call SERIALIZE-ROW on the buffer, so the syntax would be BUFFER tt_woorder:SERIALIZE-ROW(...) . YOu will overwrite the file each time you call it, so I would write...
  9. peterjudge

    How to write a xml file using break by

    I'm not sure what you're asking for. Do you want to only write a subset of the data in the dataset? ANd is tt_Woorder in the dsproductionPlan dataset?
  10. peterjudge

    PASOE resources not getting released

    This sounds familiar ... Given that the "static class" - or more accurately, a class with static members - is loaded into memory once and held there for the life of the session, there's now an rcode reference to the Config table and so, I think, the DB connection is not actually fully...
  11. peterjudge

    PASOE resources not getting released

    Are there any useful errors in the agent log? Or the session manager (aka dated) log? There have been bugs in the session manager code where agents are left in a zombie state (cannot process any more requests, but don't remove themselves from service) and eventually the server stops responding...
  12. peterjudge

    OpenEdge 13.0 ?

    Needs to be more pithy :cool: IMNSHO.
  13. peterjudge

    OpenEdge 13.0 ?

    I will be calling it OpenEdge XOD . Or OpenEdge OD. Or maybe Oh Eee Oh Dee .
  14. peterjudge

    OpenEdge 13.0 ?

    That's giving marketing folk a *lot* of credit for knowing technical stuff ...
  15. peterjudge

    OpenEdge 13.0 ?

    Its the lucky next version ... Progress have mentioned that the next version after 12.8 will be 13, at some PUG Challenge and other conferences.
Top