Search results

  1. peterjudge

    "Query"

    Is that a StarWars-like force/dark-side reference?
  2. peterjudge

    Smartbrowse loses link to smartviewer

    Congrats? FWIW I have recently worked on ADM1 code , so I completely empathise. Why would the BrowseHandle *not* be set though? Can you, in the value-changed trigger, {set BrowseHandle {&BROWSE} } (forgive the syntax, hopefully my point is clear)?
  3. peterjudge

    Connection through Progress

    See my answer at Connection through Progress
  4. peterjudge

    "Query"

    I wasn't aware there was an off switch for pedantic mode.
  5. peterjudge

    Question Apple Wallet and Google Wallet generation in OpenEdge ABL.

    @TomBascom "casually" As one does ... :D
  6. peterjudge

    Question Developper Studio Settings

    You can customise the project startup using a .p (see Progress Documentation). For launching programs you can setup a Run Configuration to do almost anything you want - pretty much like a Windows shortcut. Take a look at Progress Documentation .
  7. peterjudge

    Error in OE Gui Program

    You mention 2 OE versions. Does this error only happen in one of them? It looks like that property was only added in 11.7.x and so is't available in 11.6. Progress Customer Community
  8. peterjudge

    Answered PASOE Authenticate incoming requests by cross-checking the HTTP header

    In OE 12.5 and up, there's a GetRawEntity() method that will get you the raw/plain bytes, as a Memptr instance, on the WebRequest. In 11.7 you can use the same approach - see ADE/WebRequest.cls at 8e76c2c7d0eddc3c7d10c613fa17255c1f970b8d · progress/ADE . Just make sure you clean up after...
  9. peterjudge

    Answered How do I serialize the OpenEdge.Net.HTTP.IHttpResponse class object?

    @Cecil you're never a noob the OpenEdge.Net.HTTP.HttpRequest (or http response) isn't natively serializable , ie CLASS ... SERIALIZABLE. So you have to log a bug with progress and while they fix that, deal with that yourself (yes I accept the irony of that statement). "Deal with it" means...
  10. peterjudge

    Developer Studio accessing a remote PASOE Instance

    There's this Progress Customer Community which may help. The gist of it is that you need to connect to that remote machine's Admin Service.
  11. peterjudge

    Opening Win32 session form a URL Link

    I'm not sure of the requirement. Are you reading email in OE/ABL? Where do you need to open the link - in a browser? in a grid? something else?
  12. peterjudge

    Mutual TSL /Client Certifcate authentication

    > Follow up question, can 11.7.x PASOE/tomcat handle IP address whitelisting? Yep. This page refers to it, using the remote address valve in Tomcat.
  13. peterjudge

    Mutual TSL /Client Certifcate authentication

    It does, but is version dependent. It looks like you need at least 12.2 for the server side. See Progress Documentation For the ABL client side, support for client certificates was added a few releases later. Like 12.4 and 12.5 if memory serves.
  14. peterjudge

    Changing to PASOE.

    Given that you're load-balancing, I'd think yes. You're already using networked db connections so there's no consideration of performance impact there. I'd be curious why the load-balancing is in pairs when there are 4 AppServer brokers. But regardless, if you load-balance across a pair of...
  15. peterjudge

    Remove XML Declaration (Prolong)

    I do not know of (or recall) a technical reason, so that may be a bug.
  16. peterjudge

    Remove XML Declaration (Prolong)

    In some later OE versions (12.3 I think, and the roughly-equivalent 11.7.8 update), the INDEX() function has been enhanced to support using a MEMPTR as a source. This means you don't need to copy the MEMPTR to a LONGCHAR and back. define variable iPos as int64 no-undo. iPos = index(v_ptrXML...
  17. peterjudge

    REST and WEB Transport

    One webhandler to rule them all, and in PAS to bind them?
  18. peterjudge

    Create a Logger Class

    Thanks @Cecil - was just curious.
  19. peterjudge

    Create a Logger Class

    Curious / interesting. Do you have any more details/recollection of what the incorrect behaviour was?
  20. peterjudge

    REST and WEB Transport

    I agree on using the WEB transport over REST. It's all in ABL, so debugging becomes simpler (for us ABL developers) You can return any MIME type - not just the binary that @Jean-Christophe Cardot mentions, but also things like multipart messages or custom/vendor content types You get far more...
Back
Top