Greetings all,
MAINTAIN is running as a servlet now and I am trying to call it via a url on a web page. I need to be able to extract fields from the url string, and finding that impossible. I have tried both the old and new options presented in the manuals:
Various URLs I have tried:
http://aidsdb:8080/ibi_apps/WFServlet?IBIF_cmd=MNTCON%2...IBIC_server=MAINTAINhttp://aidsdb:8080/ibi_apps/WFServlet?SITE_NUMBER=0009&...IBIC_server=EDASERVENote that adding the -v into the string crashes.
The Top case in the MAINTAIN file:
Case Top
Declare Posvar/i2 = sys_mgr.GET_inputparams_count();
type "posvar " | Posvar;
SITER/A10 = IWC.GetAppCgiValue("SITENAME");
type "SITER = " | SITER;
Infer site.SITE.SITE_NUMBER into SiteStk;
Winform Show_and_exit Site_Record_Edit_Form;
EndCase
Neither Posvar or Siter end up with value (Posvar is zero).
Much of the material for the urls is generated by WebFOCUS via the drill-down, though I have to change things a bit because I am running across two reporting servers. The MAINTAIN stuff is out of the books and from previous successes.
Any help you can provide . . .