Search results

  1. 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.
  2. 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?
  3. JamesBowen

    ecommerce - ASN 856

    Google: What is Advanced Ship Notice (ASN) 856 transaction set? | EDI2XML
  4. 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...
  5. 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...
  6. 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.
  7. 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?
  8. 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.
  9. 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.
  10. 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...
  11. 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
  12. 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...
  13. 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 =...
  14. 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) ¯\_(ツ)_/¯
  15. JamesBowen

    Comment PNG Image display issue.

    Using the image control object in. winform also overcome the issues.
  16. 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.
  17. JamesBowen

    Comment PNG Image display issue.

    Hi Guys, Just want to share an issue that I had experienced and managed to resolve. I'm displaying a PNG image that was dynamically generated by a 3rd party software and I was experiencing a rendering issue when using the IMAGE widget. Progress KBASE showed that this was a known issue...
  18. JamesBowen

    Using .Net web front end connecting to classic appserver

    Not sure about Classic AppServer, but should be able to do this via Classic WebSpeed, Unless you are referring to Internet Adapter for AppServer. https://docs.progress.com/bundle/openedge-classic-appserver-administration-117/page/AppServer-Internet-Adapter.html
  19. JamesBowen

    How to create a pdf form with image logo header in progress 4gl.

    I was paying around with Editable PDF forms created by wkHTMLtoPDF and it seems that it semi-works in Edge/Chrome but does not work in Adobe Acrobat Reader. Searching around the inter-webs, it seems that Adobe won't allow updating of editable PDF forms unless you use an Adobe product to create...
  20. JamesBowen

    How to create a pdf form with image logo header in progress 4gl.

    Sample code using wkhtmltopdf available here: GitHub - Jimbobnz/ABLwkHTMLtoPDF: Using wkHTMLtoPDF in the ABL Download and install the wkhtmltopdf from the website (Linux or Windows). Expected output would be like this :
Back
Top