Search results

  1. 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?
  2. 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...
  3. 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...
  4. peterjudge

    OpenEdge 13.0 ?

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

    OpenEdge 13.0 ?

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

    OpenEdge 13.0 ?

    That's giving marketing folk a *lot* of credit for knowing technical stuff ...
  7. 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.
  8. 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...
  9. 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...
  10. 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.
  11. 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...
  12. 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...
  13. peterjudge

    Prodataset temp-tables empty after read-xml

    You really don't need to do this. input from value(file-info:file-name) binary no-map no-convert. import vmfile. input close. copy-lob from vmfile to vlcfile. You can just use COPY-LOB to read the file directly ... copy-lob from file file-info:full-pathname to vlcFile.
  14. peterjudge

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

    @Cecil , does the Thumbprint property not give you what you need? Per that page Doesn't look like it.
  15. peterjudge

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

    Possibly. You need the Subject, not the issuer, though. So, get ASN.1-encoded subject. SHA-1 hash it (into a big-endian-byte-order memptr). Hex-encode the first 4 bytes . Profit. (edit: had to /.-ify this post)
  16. peterjudge

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

    It appears to be a tad involved. Take a look at the answer to What does `openssl x509 -hash` calculate the hash of? . So far, so easy. Now you need the ASN.1 encoding ... you can see what that looks like using ASN.1 JavaScript decoder (upload a .0 file from $dlc/certs). The progresstalk.com...
  17. peterjudge

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

    It may be (I don't know 100% for sure that it is; I have a suspicion that it's just a custom executable that links openssh) but this command proenv> sslc x509 -in "DigiCert Global Root G2.crt" -hash -noout produces the hash value you are after.
  18. peterjudge

    Question Openedge HTTP client - Supported ciphers.

    So 18 hours ahead of the US East Coast. I think . Closer to the weekend than we are, at any rate ...
  19. peterjudge

    Question Openedge HTTP client - Supported ciphers.

    Isn't it morning? Or at least lunch? There?
  20. peterjudge

    Question Openedge HTTP client - Supported ciphers.

    Sadly, this info is not available from the AVM. YOu have to use an env var ... Progress Customer Community has info on SSL debugging. This will tell you the actual cipher and protocol used. Logging-level 5 will tell you what the HTTP client is trying to use (ie passed to the CONNECT statement).
Back
Top