/* QUERY_STRING will contain the form data.

*/

/*--------------------------------------------------------------

*/

queryString = getenv("QUERY_STRING");

 

if ( queryString ) {

 

/*----------------------------------------------------------

*/

/* Write the QUERY_STRING data to stdout.

*/

/*----------------------------------------------------------

*/

printf("<h4>Server input read from QUERY_STRING:</h4>");

 

queryStringLen = strlen(queryString);

 

if ( queryStringLen )

 

writeData(queryString, queryStringLen);

 

else

 

printf("<b>There is no data in QUERY_STRING.</b>");

 

} else

 

printf("<br>Error getting QUERY_STRING variable.");

 

} else

 

printf("<br><h2>ERROR: Invalid REQUEST_METHOD.</h2>");

 

/*------------------------------------------------------------------

*/

/* Write break and paragraph html tag to stdout.

*/

/*------------------------------------------------------------------

*/

printf("<br><p>\n");

 

/*------------------------------------------------------------------

*/

/* Write the SERVER_SOFTWARE environment variable to stdout.

*/

/*------------------------------------------------------------------

*/

serverSoftware = getenv("SERVER_SOFTWARE");

 

if ( serverSoftware )

 

printf("<h4>SERVER_SOFTWARE:</h4>%s\n", serverSoftware);

 

else

 

printf("<h4>Server Software is NULL</h4>");

 

/*-----------------------------------------------------------------

*/

/* Write the closing tags on HTML document.

*/

/*-----------------------------------------------------------------

*/

printf("</p>\n");

 

printf("</body>\n");

 

printf("</html>\n");

 

return;

 

}

 

Example of RPG language CGI program

To call the SAMPLE RPG program, add the following lines to an HTML form:

<form method="POST" action="/CGI-BIN/SAMPLE.PGM"> <input name="YourInput" size=42,2>

<br>

Enter input for the RPG sample and click <input type="SUBMIT" value="ENTER"> <p>The output will be a screen with the text,

"YourInput=" followed by the text you typed above.

The contents of environment variable SERVER_SOFTWARE is also displayed. </form>

The SAMPLE program shows how to write a CGI program in RPG language.

**************************************************************************

****

Sample ILE RPG program.

***

****

 

***

****This sample code is provided by IBM for illustrative purposes only.***

****It has not

been fully tested. It is provided as-is without any

***

****warranties

of any kind, including but not limited to the implied

***

****warranties of merchantability and fitness for a particular purpose.***

Chapter 6. Sample programs (in Java, C, and RPG) 99

Page 109
Image 109
IBM AS/400E manual Example of RPG language CGI program

AS/400E specifications

The IBM AS/400E, now more commonly known as IBM i, is a robust and versatile midrange server that has been designed to provide a comprehensive computing solution for businesses of all sizes. First introduced in the late 1980s, the AS/400 series has undergone multiple enhancements and rebranding, with the AS/400E being one of the notable iterations. This powerful platform is closely associated with IBM's commitment to reliability, scalability, and integrated business solutions.

One of the main features of the AS/400E is its highly integrated architecture that combines hardware and software into a cohesive system. This integration allows for seamless operations, reducing the complexity typically associated with managing disparate systems. The system is powered by IBM's proprietary OS/400 operating system, which has evolved into IBM i, featuring advanced capabilities like object-oriented programming, integrated database management, and security features that are essential for enterprise environments.

A key characteristic of the AS/400E is its robust database support, primarily through the use of DB2 for i. This integrated database management system enables efficient data handling and retrieval, facilitating real-time business analytics and reporting. Furthermore, the platform supports a variety of programming languages, including RPG, COBOL, and Java, making it flexible for developers who require diverse tools for application development.

The AS/400E is also known for its exceptional reliability and uptime, making it a preferred choice for critical business applications in industries such as finance, healthcare, and manufacturing. This reliability is backed by advanced error detection and correction mechanisms, as well as redundancy features that help prevent data loss and minimize downtime.

In terms of scalability, the AS/400E can effortlessly expand to accommodate growing business demands. Organizations can increase processing power by adding more resources without significant disruption. This scalability, combined with the system’s built-in virtualization capabilities, allows businesses to optimize resource usage and streamline operations.

Security is another defining feature of the AS/400E. The platform incorporates various layers of security measures, including user authentication, encryption, and comprehensive auditing capabilities, ensuring that sensitive business data is protected against unauthorized access.

Overall, the IBM AS/400E remains a powerful tool in the enterprise computing landscape, providing businesses with an integrated, reliable, and secure solution for their technological needs. Its enduring popularity is a testament to its capability to evolve with changing business requirements while maintaining its core attributes of high performance and stability.