Search results

  1. JamesBowen

    Question OPenEdge OpenEdge.Net.HTTP performance issue

    I have some connectivity and performance issues with my latest development. I'm using the OpenEdge HTTP client which I have used many times before and I have not experienced an issue quite like this before. I'm developing on 11.7.18 as OE11.7 is going to be the target version that is going to...
  2. JamesBowen

    "Conversion" of NetCode to 4GL | PdfSharp

    However, I'm having trouble in getting the PDFSharp assemblies to load correctly, so I can't help fully. I can't see the namespaces or classes. So, this is all guess work. In theory this code should work in the Progress Developer Studio. using System.*. using System.Diagnostics.*. using...
  3. JamesBowen

    "Conversion" of NetCode to 4GL | PdfSharp

    Can you show us your ABL code including any "using" statements, plus the assemblies you are using. I trying to get experiment with PDFSharp too, but Visual Studio is not showing the nested namespaces.
  4. JamesBowen

    "Conversion" of NetCode to 4GL | PdfSharp

    Port existing PDFsharp projects to PDFsharp 6 Version 6.1.0 In this article Upgrade existing code Breaking changes This article describes how to upgrade your existing PDFsharp 1.x projects to PDFsharp 6. Upgrade existing code Upgrading an existing PDFsharp project is described in Upgrade...
  5. JamesBowen

    Unable to get PDSOE 12.8 installation in non interactive mode

    I think that you have to install the Java JDK (can't remember which version) independently and define the JAVA_HOME system environment variable pointing to the Java JDK install path.
  6. JamesBowen

    Question WhatsApp API Gateway providers

    I'm scoping out a new project where the requirement to send a out a uni-direction broadcast message to a WhatsApp group. The messages will contain interactive buttons which will perform an action on a PASOE server. Has anyone utilized a 3rd party WhatsApp gateway provider to send messages?
  7. JamesBowen

    ecommerce - ASN 856

    Google: What is Advanced Ship Notice (ASN) 856 transaction set? | EDI2XML
  8. JamesBowen

    ABL client socket mTLS enabled and the sslKeyFile option

    REF: https://docs.progress.com/bundle/abl-reference/page/CONNECT-method-Socket-object.html Having a quick read of the document it seams to me the PEM file will need to contain the Public Certificate and the Private Key. I believe that you can do something like this. cat clientCert.crt...
  9. JamesBowen

    SOAP error with Content-type

    I've tested on 11.7 and 12.8 and it works for me. Must be "feature" in 11.6. /*------------------------------------------------------------------------ File : SOAPTEST.p Purpose : Syntax : Description : Author(s) : james Created : Tue Jun 11...
  10. JamesBowen

    SOAP error with Content-type

    Just to prove a theory. What happens if you set the content-type to be "application/soap+xml", or just "text/xml"? Omit the character set.
  11. JamesBowen

    Question OpenEdge 12.8 Linux and .NET proof of concept

    Say that again?? Are you saying that they are stopping the ABLDoJo on Linux on 12.8?
  12. JamesBowen

    Question OpenEdge 12.8 Linux and .NET proof of concept

    hopefully the abl dojo will updated soon to oe 12.8 with .NET support.
  13. JamesBowen

    Question OpenEdge 12.8 Linux and .NET proof of concept

    Hummmm, i was testing on 11.7 and I did originally escape the special characters, but the Progress Developer Studio was having issues. UPDATE: I was missing the escaping of the (\) backslash.
  14. JamesBowen

    Question OpenEdge 12.8 Linux and .NET proof of concept

    Hi, Can someone please try testing the code below on OE12.8 on Linux OS to test the new .NET compatiablity. I want to get a good idea of what will work with pratical examples. I understand that .NET events or anything GUI related won't work on a Linux distro and that is acceptable with the...
  15. JamesBowen

    Resolved Base32 Decoder and Encoder

    The reason for needing to create Base32 Encoding is for the use of create QR codes to provision TOTP authenticators. The result of the base32 becomes a shared secret key. Example: generate-uuid --> base32 encoding --> JBSW-Y3DP-EHPK-3PXP
  16. JamesBowen

    Resolved Base32 Decoder and Encoder

    I've given it another crack and I think I've got it. method public static character Encode( input rawDataBytes as raw ): define variable Base32Chars as character no-undo initial "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567". define variable base32String as character...
  17. JamesBowen

    Resolved Base32 Decoder and Encoder

    I've re-opened this thread. I now have a situation where I need to write a base32 encoder function/method. Any ideas how to do this in the ABL? c# code I've tried to reserve into progress. public class Base32Encoder { private static readonly char[] Base32Chars =...
  18. JamesBowen

    Error Unable to send Json API with special characters through socket

    message "Code Page Internal" Session:cpinternal. message "Code Page Stream" Session:cpstream. Are you including a start up parameter of -cpinternal UTF-8 -cpstream UTF-8 If not, it might be defaulting to ISO8859-1 (latin-1) ¯\_(ツ)_/¯
  19. JamesBowen

    Comment PNG Image display issue.

    Using the image control object in. winform also overcome the issues.
  20. JamesBowen

    Comment PNG Image display issue.

    OE 12.8 64bit and OE 11.7 32bit are not effected with the PNG corruption, So, far for me only 11.7 64bit is effected by the PNG interlacing issue.
Back
Top