<%@page contentType="text/vnd.wap.wml"%> <%@ taglib uri="/WEB-INF/csci5931.tld" prefix="csci5931" %> <% // URL of the xml news server final String NEWS_SERVER = "http://dcm.uhcl.edu/yue/courses/xml/notes/general/news.pl?topic="; // Base url final String BASE_URL = "h3.jsp"; // request parameter for the topic final String TOPIC_PARAMETER = "topic"; // maximum number of articles to show final int MAX_ARTICLES = 4; // Retrieve the topic parameter if there is one String country = request.getParameter( TOPIC_PARAMETER ); %> <% // Check too see if country is null. If it is null, then show the home page if ( country == null ) { // Print the home page %> <% } // Retrieve content and show news articles else { %> <% } %>