I was curious if its possible to call a node js service or file from a progress.p(complied is a .r) that runs on Linux?
Possible example something like this:
PROCEDURE callAdditionalCheck:
FIND FIRST User NO-LOCK
WHERE USER.USERID = whateverUserVariable NO-ERROR.
IF NOT AVAILABLE User THEN DO:
/* Call Node service here. Service would run additional check here */
NodeCheck(user,userInfo).
END.
END PROCEDURE.
Things to note:
- Progress Openedge 11.3
- RedHat6
If there are other examples or possible resources I will gladly look at those too. I currently cannot find any. Thank you in advance!