Search results

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

    Remove XML Declaration (Prolong)

    I do not know of (or recall) a technical reason, so that may be a bug.
  6. 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...
  7. peterjudge

    REST and WEB Transport

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

    Create a Logger Class

    Thanks @Cecil - was just curious.
  9. peterjudge

    Create a Logger Class

    Curious / interesting. Do you have any more details/recollection of what the incorrect behaviour was?
  10. 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...
  11. peterjudge

    Question Error Handling with Exceptions

    The AVM does not let errors "past the WAIT-FOR". If there are unhandled errors, the AVM will itself display any errors (or let .NET deal with them). In .NET terms, you need to add catch blocks to all event handlers, and deal with the errors there. That could be showing errors in some form of...
  12. peterjudge

    Migrating Classic WebSpeed project in a new PAS OE Web App project

    You can migrate "classic" webspeed to PASOE using the (shipped) CompatibilityHander. In the development server it's the default handler - so in a dev environment you can test easily. If you want to write new code then you need to add your own WebHandlers. You can use them to process/handler a...
Back
Top