Search results

  1. JamesBowen

    Assemblies location - mapped drive vs. local drive

    Found it. https://community.progress.com/s/article/Referenced-assemblies-not-working-in-Developer-Studio-when-located-on-a-network-drive
  2. JamesBowen

    Assemblies location - mapped drive vs. local drive

    I have interesting problem where the .net assemblies are not loading in the session without any errors, apart from a blank WinForm the title "<insert title here>". The -assemblies startup parameter point to a map drive which contains a assemblies folder. Copy the contents of the assemblies...
  3. 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...
  4. 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.
  5. 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?
  6. 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...
  7. 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...
  8. JamesBowen

    ChatGPT and writing code

    I asked ChatGPT to write an ABL sample dynamic query code this was the result.
  9. 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...
  10. JamesBowen

    Question YAML/OpenAPI file generation.

    Yeah... I don't have the PASOEContent folder.
  11. 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
  12. JamesBowen

    Question YAML/OpenAPI file generation.

    Woops that should have been 11.7.15
  13. 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...
  14. JamesBowen

    Problem with READ-XML Method for DATETIME-TZ data

    Possibly needed to include a client start-up parameter -useSessionTZ 1
  15. 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.
  16. JamesBowen

    ABL Dojo

    What is "scratchpad"?
  17. JamesBowen

    Write to xml file

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

    Calling function from .NET WebBrowser

    I think I had to disable some security in the properties of the file itself
  19. 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.
Back
Top