<%@ page contentType="text/xml" %><% // Start with an arbitrary number of sales def bootsSold = 1672 def boardsSold = 312 def bindingsSold = 82 // Reflect new sales def rand = new Random() bootsSold = bootsSold + rand.nextInt(11) boardsSold = boardsSold + rand.nextInt(6) bindingsSold = bindingsSold + rand.nextInt(4) //header("Content-Type: text/8xml8"); response.contentType = "text/xml" out << ""; %> $boardsSold $bootsSold $bindingsSold