Здравстуйте, люди!
Нужна помощь!Не удается мне никак подружиться с rss.Вроде бы сделала все по описанию,открываю в браузере и не работает...пустая страница.
Это файл /WEB-INF/xsl/news.xsl
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl

utput method="html"/>
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="rss">
<xsl:apply-templates select="channel"/>
</xsl:template>
<xsl:template match="channel">
<xsl:apply-templates select="item"/>
</xsl:template>
<xsl:template match="item">
<h1>
<xsl:value-of select="./title"/>
</h1>
<font size="-2"><xsl:value-of select="pubDate"/></font>
<xsl:apply-templates select="link"/>
<p><xsl:value-of disable-output-escaping="yes" select="description"/></p>
</xsl:template>
<xsl:template match="link">
<xsl:param name="path" select="."/>
<br/>
<a href="{$path}">Источник</a>
<br/>
</xsl:template>
</xsl:stylesheet>
Далее создала .jsp файл
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x" %>
<c:import var="xmlfile" url="http://linux.org.ru/rss.jsp" charEncoding="koi8-r"/>
<c:import var="xslfile" url="/WEB-INF/xsl/news.xsl" charEncoding="UTF-8"/>
<x:transform xml="${xmlfile}" xslt="${xslfile}" />
Теперь открываю в браузере его...и нифига...пусто...