Hello, I'm having a problem getting the results of a Java function wrapped in <xsp:logic> tags to display on my page. All I would like to do is display the value of the variables prevurl and nexturl on the page. This code below is in an xsl file outside of the main template. I'm calling this template within my main one with <xsl:apply-templates select="prevnext"/>
I have the following in an xsl file: <xsl:template match="prevnext"> <xsp:logic> String next_move_string = "1"; String prev_move_string = "-1"; String uri = request.getRequestURI(); <xsp-request:set-paramter name="move">next_move_string</xsp-request:set-paramter>; String nextquery = request.getQueryString(); <xsp-request:set-paramter name="move">prev_move_string</xsp-request:set-paramter>; String prevquery = request.getQueryString(); String nexturl = uri + nextquery; String prevurl = uri + prevquery; nexturl = "Next"; // just for testing prevurl = "Prev"; // just for testing </xsp:logic> <xsp:expr>prevurl</xsp:expr> <xsp:expr>nexturl</xsp:expr> </xsl:template> ################### Shouldn't I be seeing the values between those <xsp:expr> tags? This is compiling fine but I only receive an empty output for the <prevresult> and <nextresult> tags. I've tried several things including <xsp:value-of ...> but I haven't had any luck. Does anyone catch any glaring errors here? Thanks much, -Matt --------------------------------------------------------------------- Please check that your question has not already been answered in the FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>