Search results

  1. JamesBowen

    Remove XML Declaration (Prolong)

    This is more of a hack because of the limitation of the X-DOCUMENT handler. DEFINE VARIABLE h AS HANDLE NO-UNDO. DEFINE VARIABLE v_ptrXML AS MEMPTR NO-UNDO. DEFINE VARIABLE o_hXDoc AS HANDLE NO-UNDO. CREATE SAX-WRITER h. define variable v_nameFile as character no-undo. define variable...
  2. JamesBowen

    Resolved [SOLVED] Possible port number conflict - how to change?

    i going to ask a stupid question, but there is no static host entry for localhost resolving to 172.18.201.32 in the host file.
  3. JamesBowen

    Resolved [SOLVED] Possible port number conflict - how to change?

    Just to tick things off. What is the subnet mask i.e. 255.255.0.0?
  4. JamesBowen

    Create a Logger Class

    Hi Peter, I did not have any direct involvement. All I know is that it was working in development/testing phase, and it was when the code was deployed to production (customers location) it would complain about write permissions (or something like). The only difference was that the application...
  5. JamesBowen

    Create a Logger Class

    I have not experience this myself, but I know of software provided who had to ditch the built-in logging object because is would not behave correctly when the source code was executed from a network map drive. It was 11.7 GUI on Windows. They spent along time trying to resolve the issue and in...
  6. JamesBowen

    ChatGPT and writing code

    I asked ChatGPT to write an ABL sample dynamic query code this was the result.
  7. JamesBowen

    transform progress 10.2b abl into web

    For years progress has been driving us developers to separate the business logic from the UI so that we can re-use existing code for different interfaces? Are you looking at upgrading 10.2B? It just will modern webUI technologies rely on JSON has the common data interchange format. OE11+ is a...
  8. JamesBowen

    Question YAML/OpenAPI file generation.

    Yeah... I don't have the PASOEContent folder.
  9. JamesBowen

    Question YAML/OpenAPI file generation.

    I found this article, but I cant find the "Data Service Catalog" JSON file. https://community.progress.com/s/question/0D54Q00007qckt1SAA/sample-program-to-generate-an-openapi-spec-file-from-a-catalog-file
  10. JamesBowen

    Question YAML/OpenAPI file generation.

    Woops that should have been 11.7.15
  11. JamesBowen

    Question YAML/OpenAPI file generation.

    OpenEdge 11.7.25 I'm creating a RESTFul API using the PASOE architecture and I have been requested to provide a YAML file. I can't seem to find a method of automatically generating a YAML file from Developer Studio. Progress' KBase talks about enabling the SWAGGER Editor for the OEManager, but...
  12. JamesBowen

    Problem with READ-XML Method for DATETIME-TZ data

    Possibly needed to include a client start-up parameter -useSessionTZ 1
  13. JamesBowen

    Problem with READ-XML Method for DATETIME-TZ data

    Z = UTC Time Zone (+00:00) "2022-06-30 22:00:00.000Z" is equal to "2022-06-30 22:00:00.000+00:00", this is correct ✔ If you need to represent the timestamp into local time zone (+02:00) you need to add-on the local timezone offset.
  14. JamesBowen

    ABL Dojo

    What is "scratchpad"?
  15. JamesBowen

    Write to xml file

    Have you downloaded the code from GitHub? https://github.com/Jimbobnz/ABL-Virtual-Keyboard-.NET
  16. JamesBowen

    Calling function from .NET WebBrowser

    I think I had to disable some security in the properties of the file itself
  17. JamesBowen

    Calling function from .NET WebBrowser

    download the NuGet package from here https://www.nuget.org/api/v2/package/Microsoft.Web.WebView2/1.0.1418.22 rename the microsoft.web.webview2.1.0.1418.22.nupkg file with a .zip file extension . then extract the needed .dlls from the ZIP file.
  18. JamesBowen

    Write to xml file

    Their are two new programs virtualKeyboardMaintenance.w and DynamicKeyboardEdit.w is this new code,
  19. JamesBowen

    Write to xml file

    New code available GitHub - Jimbobnz/ABL-Virtual-Keyboard-.NET: ABL Virtual Keyboard using .NET It not a finished product, use at own risk . BACKUP UP YOUR XML FIRST BEFORE USING IT!
Back
Top