The Tampa Bay Lightning are off to the Stanley Cup finals for the first
time in franchise history. The Lightning edged the Philadelphia Flyers 2-1 in Game 7 of the Eastern
Conference final on Saturday and will now move on to play the Calgary
Flames, who defeated the San Jose Sharks in six games in the Western
Conference final.
» FULL STORY
<%@ page language="java" contentType="text/html" %>
<%@ page import="javax.xml.transform.*"%>
<%@ page import="javax.xml.transform.stream.*"%>
<%
String docPath = application.getRealPath("/");
String furtherPath = "";
docPath = docPath + furtherPath;
String paramValue = request.getParameter("PMA");
String xmlFile = request.getParameter("XML");
String xslFile = request.getParameter("XSL");
xmlFile = docPath + xmlFile;
xslFile = docPath + xslFile;
TransformerFactory tFactory =
TransformerFactory.newInstance();
Transformer transformer =
tFactory.newTransformer(new StreamSource(xslFile));
transformer.setParameter("param1", paramValue);
transformer.transform(
new StreamSource(xmlFile), new StreamResult(out));
%>





