Reputation: 172
I have googled and tried some solutions but so far, nothing works. I am trying to do some API-calls (REST) from a 4gl / OpenEdge procedure. However, there is no AppServer available and I have no clue if that is necessary to do an API-call. I am not a OpenEdge expert and none of my colleagues have a clue :X Is there anyone that knows if this is possible, and if so, an example for doing this? Thanks
Upvotes: 0
Views: 246
Reputation: 46
You need an HTTP client to perform the call.
RTFM ;)
Some examples there:
https://github.com/PeterJudge-PSC/http_samples I used this to implement my calls (GET, POST, etc.) with 11.5 & 11.6. Works great.
Upvotes: 1