Search results

  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.
  16. peterjudge

    Ideas for caching a table?

    It will persist in a single AVM session (so Classic agent/client session/etc, or a single session in a PASOE multisession agent process). The "global" nature of shared things means that it's not limted to the current call stack, but the whole AVM session can access that thing (variable...
  17. peterjudge

    Question DB user-level password policy implementation OE 11.73

    I am not advocating for using _User, but you can mitigate matters. You can use the OE Authentication Gateway (since 11.6.something) to add better authentication - using Active Directory or LDAP or something - and not have to manage credentials, their storage and their policies. That said, if...
  18. peterjudge

    Ideas for caching a table?

    As much as the thought of using global shared temp-tables makes me throw up in my mouth a little bit, having such a beast have the same name as the db table is a neat trick, and should let you implement "common.i" incrementally throughout the application.
  19. peterjudge

    Ideas for caching a table?

    Put it in -B2 ? And let it churn away. You can cache the data in static OOABL members (properties/whatever). Add a "last loaded" timestamp too, and maybe a "max age" value. In the activate procedure - and if that doesn't run for Classic WebSpeed, there's a procedure named something like...
  20. peterjudge

    Prodataset temp-tables empty after read-xml

    Are you calling the SOAP service yourself? Or is this just an XML file that you are being asked to process? If a SOAP service: if you have a WSDL for the SOAP service, you can use the $DLC/bin/bprowsdldoc script to generate documentation on the WSDL, including ProDataSet definitions. If it's...
Top