Search results

  1. JamesBowen

    Change profile name

    I actually, change my name too, and it has not taken effect yet.
  2. JamesBowen

    How to decode string

    What's the decode() function? I assume it's meant to say encode()
  3. JamesBowen

    Does anyone have a Calendar (date-picker) example?

    Check this out: GitHub - Jimbobnz/ABL-DatePicker: ABL DatePicker popup control
  4. JamesBowen

    Coding styles.

    Ha! Looking at it now it so obvious. def var chVal as character no-undo. chVal = ?. if chVal gt chr(0) then message "chVal:" chVal. else message "null value!".
  5. JamesBowen

    Coding styles.

    Thank Peter. I tweaked the code to now use the static IsNullOrEmpty() method. It would be nice to have a IsNotNullOrEmpty() method as-well. I whished there where more examples and better descriptions on the online documentation. OpenEdge API Code Documentation I'm now reviewing the...
  6. JamesBowen

    Coding styles.

    When I started to learn progress 4GL in 1998 I was trained to write code like this: But, in the last 10 years I have now simplified the code to look like this: It produces the same result and coding style looks prettier ( i think it does ). I was inspired by some PHP code. However, I've...
  7. JamesBowen

    Question Apple Wallet and Google Wallet generation in OpenEdge ABL.

    Not really interested in using apple wallet or google wallet for payment, but to create a loyalty card.
  8. JamesBowen

    Question Apple Wallet and Google Wallet generation in OpenEdge ABL.

    I am scoping out the possibility of generating a Apple Wallet and Google Wallet in OpenEnge (11.7). Has anyone ever done this before in the ABL? At first glance the Apple Wallet seams simple, apart from the digitally signing a file. I have looked at using passkit.com as it provides a REST...
  9. JamesBowen

    Answered WebSpeed Licence

    Just found out the hard way that not all "OE Application Server Enterprise" licences are the same. I developed a new solution to use PASOE. When deploying the customers test site, I was unable to get the PASOE Instance to run. I'm having to now re-write my code to use the classic AppServer &...
  10. JamesBowen

    Authenticating in a REST API using API KEY

    Do you have any documentation?
  11. JamesBowen

    Error reading Outlook folder

    I think just have MS Office installed will be sufficient. When I have time will look at the .NET equivariant of the COM Automation. I have already develop code that interacts with Office365 via Microsoft Graph API. But this is out of scope of what is required by Patrick.
  12. JamesBowen

    Error reading Outlook folder

    if it any consolation, i’m getting the same error using your code on OE 11.7 on windows server.
  13. JamesBowen

    Error reading Outlook folder

    It's a long shot, but when I tried your code I got presented with this warning message. Is this something that you get?
  14. JamesBowen

    Answered PASOE Authenticate incoming requests by cross-checking the HTTP header

    Thanks, Peter! I completely forgot the PASOE was wapper for the classic WebSpeed. I've made the code change and in theory, it should work.
  15. JamesBowen

    Answered PASOE Authenticate incoming requests by cross-checking the HTTP header

    OE: 11.7 I'm using the PASOE Web transport. I need to authenticate the incoming request by cross-checking the HTTP header value "X-WC-Webhook-Signature":U I need the be able to get the poRequest:Entity value in the memptr unaltered. Currently, it [poRequest:Entity] is in a JSON construct and...
  16. JamesBowen

    Answered How do I serialize the OpenEdge.Net.HTTP.IHttpResponse class object?

    I’m feeling like such a noob. I want to pass the class object "OpenEdge.Net.HTTP.IHttpResponse" to a remote AppServer. This can’t be done because the class object is "marshaled". How do I serialize the class object so that I can pass it to the AppServer?
  17. JamesBowen

    Developer Studio accessing a remote PASOE Instance

    Yes, I guess that I am trying to connect to the remote admin service. I followed the instructions, but when it came to adding a New Project, the remote admin server was not listed.
  18. JamesBowen

    Developer Studio accessing a remote PASOE Instance

    OE: 11.7.11 I'm developing a new PASOE web service and I want the code and deploy against a remote PASOE instance (linux machine) rather than my localhost version. When setting up the new project in developer studio and I try and add a new Server, it defaults to localhost. But when I try and...
  19. JamesBowen

    Opening Win32 session form a URL Link

    I was hoping to avoid the pstimer, but I think you are right about doing the "put down, pick up" method. In the good old days (Windows95/98/XP), I use to use WinSock.ocx and published UDP messages to localhost.
  20. JamesBowen

    Opening Win32 session form a URL Link

    Now that I can execute a prowin session (xzy) can capture the incoming parameter(s). I now need to notify the existing open prowin Application (abc) of this new event. In the past the past I have played with .NET MailSlot, but is too finicky. What are my options for a inter-process...
Back
Top