private Hashtable parseArguments (String query_string)

{

Hashtable cgi_vars = new Hashtable();

// get the first token scan for the '&' char

StringTokenizer stringToken = new StringTokenizer(query_string,"&");

while (stringToken.hasMoreTokens())

{

index++;

// Split the first token into Variable and Value

StringTokenizer subToken = new StringTokenizer(stringToken.nextToken(),"=");

// Remove the '+' char from the Variable

String variable = plussesToSpaces(subToken.nextToken());

// Remove the '+' char from the Value

String value = plussesToSpaces(subToken.nextToken());

//Create the Keys to store the Variables and the Values in the Hash Table

//the keys will be variable1, value1, variable2, value2, and so forth String temp1= new String("variable"+index);

String temp2= new String("value"+index);

//Store the variables and the values in the Hash table

cgi_vars.put(temp1,translateEscapes(variable)); cgi_vars.put(temp2,translateEscapes(value));

}

return cgi_vars;

}

private String plussesToSpaces(String query_string)

{

//Substitute the '+' char to a blank char return query_string.replace('+', ' ');

}

private String translateEscapes(String query_string)

{

int percent_sign = query_string.indexOf('%'); int ascii_val;

String next_escape=null; String first_part=null; String second_part=null;

while (percent_sign != -1)

{

next_escape = query_string.substring(percent_sign + 1, percent_sign + 3);

ascii_val = (16 * hexValue(next_escape.charAt(0)) + hexValue(next_escape.charAt(1))); first_part = query_string.substring(0, percent_sign);

second_part = query_string.substring(percent_sign + 3, query_string.length()); query_string = first_part + (char)ascii_val + second_part;

percent_sign = query_string.indexOf('%', percent_sign + 1);

}

return query_string;

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

Page 101
Image 101
IBM AS/400E manual Sample programs in Java, C, and RPG

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.