A few articles have dealt with using RPG to write Common Gateway Interface (CGI) applications, which allow midrange programmers to use tools already available to produce e-commerce solutions for companies. Those articles dive right into using APIs to produce nifty HTML output, something every IT shop will soon have to deal with.
As a writer, I am sometimes so excited to share new technology that I dont realize how fast I may be going. I hope I can make up for that in this article, in which I show you, step by step, how to take an everyday program and convert it into a CGI application. Keep in mind that the only real difference between RPG programs and CGI applications is the way they read input and write output. To make this transition as painless as possible, I use a basic invoice-printing program, an application many people are familiar with. With this program, the user can enter either the number of an invoice to be printed or a customer number that prints all open invoices. An extra parameter allows the user to specify an invoice reprint. In this article, I discuss the files used and the RPG and CGI applications. I also show you the similarities and differences between these applications. You can download the source for all the files and both applications at www.midrangecomputing.com/mc/.
The Data Files
Because the data files used in this article are exactly the same for each application, let me give you a quick rundown of what they are. The Order Header file (ORDHDRPF) contains basic order information, such as the invoice and customer numbers, and a flag that tells the system whether the invoice has been printed. The Order Detail file (ORDDETPF) contains line-item information, such as the item number, description, and invoice quantity. Finally, the Order Shipment file (ORDSHPPF) contains address information for the invoice.
The RPG Application
RPG program PRTINV1RG prompts the user for an invoice number or customer number and asks if the user wants to reprint the invoice(s). PRTINVDF1 is the display file that goes along with this program. PRTINV1RG checks errors to make sure that either an
invoice or customer number has been entered and verifies that the Reprint Invoices field contains either Y or N.
After the data is validated, the invoice number, customer number, and reprint flag are passed to RPG program PRTINV2RG, which uses these parameters to build an Open Query File (OPNQRYF) command that selects records from ORDHDRPF for printing. The files are then processed, and the invoices are printed. Printer file PRTINV2PT contains the DDS source for the printer file.
The CGI Application
HTML file CGIINV.HTML lets the user enter the invoice or customer number and the reprint flag. (Figure 1 shows how this entry screen appears in a browser.) CGIINV.HTML also performs error checking to ensure that an invoice or customer number is entered and uses JavaScript to verify that the Reprint Invoices field contains either Y or N. Dont let this scare you off, however. CGIINV.HTML is not Java and does not require compilation or loading of classes onto your machine. JavaScript is an interpreted scripting language that can be embedded in HTML documents.
When a user clicks on Print, control is passed to CGI program CGIINVRG if no errors are found. This program uses the Get Environment Variable (QtmhGetEnv) API to read the query string environment variables. The Convert to Database (QtmhCvtDB) API parses the received data into a data structure that you provide. Once you have these values, an OPNQRYF command is built and run on ORDHDRPF. The data retrieved is then read, and the Write to Standard Output (QtmhWrStout) API uses that data to write the invoice information to a Web page.
Compare and Contrast
These RPG and CGI applications perform the same functions yet use different methods of input and output. The RPG application uses a display screen for input, an RPG program for processing, and a printer file for output. In contrast, the CGI application uses an HTML file (Web page) for input and initial error checking, an RPG program for processing, and a dynamically created Web page for output. To show the differences and similarities in these applications, let me walk you through each section step by step.
In each application, a front-end allows the user to input data, verifies that the data is correct, and passes it to the processing program. Figures 2 and 3 contain partial source for the RPG program and HTML file, respectively. Each section is labeled and color-coded to relate each section together. For example, section A represents error checking, and section B represents passing parameters and control to the processing program.
All the action in the HTML file takes place when the user clicks the Print button. The Print button is associated with the onClick event, which tells the browser to execute the Validate() function when the user clicks Print. The parameter this.form tells the browser to pass the values from the form to the JavaScript function. Validate() uses properties from the form to retrieve the invoice number, customer number, and reprint flag from each element and performs a series of checks, building an error message if it encounters any errors. When error checking is done, Validate() uses the Alert() method to prompt a dialog box to appear with the errors listed if the error field contains anything but blanks. Alert() is best compared to the DISPLAY op code in RPG; its built into JavaScript and doesnt need to be declared anywhere. The data it receives is the data it displays.
An error field with no value tells Validate() that no errors were encountered. Validate() then uses the window.location method to redirect the page to the URL of the CGI program you wish to run (CGIINVRG, in this case). The data collected from the form is also passed as a parameter in the form of query string environment variables.
Now, Ill examine the processing programs. These programs receive the parameters passed into them and display the invoice. However, the RPG program prints the invoice, whereas the CGI program displays the invoice on a browser. Figures 4 and 5 are partial
representations of the RPG and CGI code for each application. The important source for each application is labeled and color-coded as before. Label C represents the parameter processing, and Label D represents the code that processes data and produces output.
The major differences between these code examples are evident. Again, because you are probably already familiar with the RPG program, I will focus on the CGI program CGIINVRG.
Section C shows the code for two subroutines. The first, $GetQS, uses the QtmhGetEnv API to read the query string data passed into it. This API reads environment variables, such as query string data in this case. The second subroutine, $CvtDB, converts this data into data structure EnvDS so the CGI program can use it. Because the field names on the HTML form match the field names in the EnvDS data structure, this API knows to parse the data into the correct fields. For more information on how these APIs work, see the Web Programming Guide V4R3.
Section D contains code used to output the information. In the case of CGIINVRG, information appears on a Web browser via the QtmhWrStout API, which writes the data passed into it to the Web browser. This data can be any type of code that can be written to a browser (usually JavaScript or HTML). Figure 6 shows a sample of the invoice produced by CGIINVRG.
The similarities between the two applications are obvious. Both perform the same operations: display, error checking, record selection, and display of information. If you download the complete source code for this article, you will notice that the code that creates the OPNQRYF command and reads the data files is nearly identical in each example. This is the meat and potatoes of the application and doesnt change from RPG to CGI applications, making the learning curve smaller for CGI applications written in RPG.
Time for a Change?
The point is, despite all the new technology available, RPG may still be your best bet. You can use most of the tools youre familiar with, and you have to learn only the basics of HTML and JavaScript, both of which have countless resources available on the Internet. Providing information via a browser is much more versatile than trying to format it into an email and distribute it to multiple users. With the Internet, you can create it once and simply point people to it. If you are creating output-only applications, you need only the QtmhWrStout API, and if you require input, you need a minimum of two more APIs.
Use the applications provided here to start your CGI programming. Once you get the hang of it, dig into IBMs books and the many articles written on the subject to get even more results from your CGI applications. After all, managers and users dig Web pages!
Reference
Web Programming Guide V4R3 (GC41-5435-02, CD-ROM QB3AEQ02)
Related Materials
RPG and CGI: Code WordDynamic! Bradley V. Stone, MC, April 1999
RPG and HTML: Another Winning Team, Bradley V. Stone, MC, May 1999
A
B
Figure 2: The RPG program contains code for input and error checking.
function Validate(form) {
var error = ;
if ((form.wsinv.value != ) && (form.wscust.value != )) {
error = Cannot enter both Invoice Number and Customer Number ;
}
if ((form.wsinv.value == ) && (form.wscust.value == )) {
error = Enter an Invoice Number or a Customer Number ;
}
if ((form.wsreprt.value.toUpperCase() != Y) &&
(form.wsreprt.value.toUpperCase() != N)) {
error = error + Reprint Invoice(s) must be Y or N ;
}
if (error != ) {
error = The following error(s) exist: + error;
alert(error);
}
else {
window.location=/cgi-bin/cgiinvrg?wsinv= +
form.wsinv.value + &wscust= +
form.wscust.value + &wsreprt= +
form.wsreprt.value.toUpperCase();
}
}
A
B
Figure 3: The HTML file also contains code for input and error checking.
C *ENTRY PLIST
C PARM WSINV 9 0
C PARM WSCUST 9 0
C PARM WSREPRT 1
C $PRINT BEGSR
C OPEN ORDHDRPF
C READ ORDHDRPF
C dow (not %eof)
C eval GRDTOT = 0
C OHINV CHAIN ORDSHPPF
C WRITE HDG
C OHINV SETLL ORDDETPF
C OHINV READE ORDDETPF *
C dow (not %eof)
C eval EXTPRICE = (ODQTY * ODPRICE)
C eval GRDTOT = (GRDTOT + EXTPRICE)
C WRITE DET
C OHINV READE ORDDETPF
C enddo *
C WRITE BOT
C READ ORDHDRPF
C enddo *
C CLOSE ORDHDRPF
C ENDSR
C
D
Figure 4: The RPG program handles processing and printing.
C $GetQS BEGSR
C CALLB 'QtmhGetEnv'
C PARM EnvRec
C PARM EnvRecLen
C PARM EnvLen
C PARM EnvName
C PARM EnvNameLen
C PARM WPError
C ENDSR
C $CvtDB BEGSR
C if (EnvLen = 0)
C eval EnvLen = %size(EnvRec)
C endif
C CALLB 'QtmhCvtDb'
C PARM EnvFile
C PARM EnvRec
C PARM EnvLen
C PARM EnvDS
C PARM CvtLen
C PARM CvtLenAv
C PARM CvtStat
C PARM WPError
C ENDSR
C $PRINT BEGSR
C OPEN ORDHDRPF
C READ ORDHDRPF
C dow (not %eof)
C eval GRDTOT = 0
C OHINV CHAIN ORDSHPPF
C EXSR $HDG
C OHINV SETLL ORDDETPF
C OHINV READE ORDDETPF *
C
D
C dow (not %eof)
C eval EXTPRICE = (ODQTY * ODPRICE)
C eval GRDTOT = (GRDTOT + EXTPRICE)
C EXSR $DET
C OHINV READE ORDDETPF
C enddo *
C EXSR $BOT
C READ ORDHDRPF
C enddo *
C CLOSE ORDHDRPF
C ENDSR
*************************************************
C $HDG BEGSR
C eval WrtDta = '
' + NewLine' + ' +
C 'Customer:' + %editc(OHCUST:'Z') + ' +
C '
C 'Invoice:' + %editc(OHINV:'Z') +
C '
C '' + %trim(OSNAME) + ' ' +
C 'Rec Date:' + ' +
C %editw(OHRECDAT:' / / ') +
C '
C '' + %trim(OSADDR1) + ' ' +
C 'Due Date:' + ' +
C %editw(OHDUEDAT:' / / ') +
C '
C '' + %trim(OSADDR2) + ' ' +
C 'Total Due:' + %editc(OHTOTDUE:'3') + ' +
C '
C '' + %trim(OSCITY + OSSTATE + OSZIP) + ' +
C '
C '
C EXSR $WrStout
C eval WrtDta = '
' +' + ' +
C 'Qty ' +
C 'Item ' +
C 'Description ' +
C 'Price ' +
C 'Total Due
C NewLine
C EXSR $WrStout
C ENDSR
*************************************************C $DET BEGSR
C eval WrtDta = ' ' +' +
C %editc(ODQTY:'3') + '' +
C %trim(ODITEM) + '' +
C %trim(ODDESC) + '' +
C %editc(ODPRICE:'3') + '' +
C %editc(EXTPRICE:'3') + '
C NewLine
C EXSR $WrStout
C ENDSR
*************************************************C $BOT BEGSR
C eval WrtDta = '' +
C 'Grand Total:' +
C %editc(GRDTOT:'3') + '
C NewLine
C EXSR $WrStout
C ENDSR
*************************************************
C $WrStout BEGSR
C eval WrtDtaLen = %len(%trim(WrtDta))
C CALLB 'QtmhWrStout'
C PARM WrtDta
C PARM WrtDtaLen
C PARM WPError
C ENDSR
D
Figure 5: The CGI program also handles processing and printing.
Figure 6: This is what an HTML invoice looks like.
LATEST COMMENTS
MC Press Online