Search results

  1. peterjudge

    Create a Logger Class

    Thanks @Cecil - was just curious.
  2. peterjudge

    Create a Logger Class

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