0

I am trying to find an API similar to QtmhGetEnv that allows me to read URL parameters in an RPG-based CGI script.

Is there something like that available?

Kerim Güney
  • 1,059
  • 1
  • 10
  • 23

1 Answers1

3

There are several alternatives, but without knowing why QtmhGetEnv is not a good fit, these may not be desirable either:

QthmGetEnv is basically a wrapper for getenv()

ILEastic is one of the open solutions available on GitHub by Niels Liisberg and others

Brad Stone has had the eRPG SDK available for many years

Giovanni Perotti at Easy400 has had CGIDEV2 available for many years

All of this 3rd party software has support from the developers and the midrange community.

Buck Calabro
  • 7,558
  • 22
  • 25
  • Ah, I think I found the misunderstanding. I wasn't aware of `QthmGetEnv`'s relationship to `getenv` . I think I should be able to read the query string with `QthmGetEnv`. Thank you @Buck – Kerim Güney Jun 04 '23 at 16:55