I'm using cocoon 2.1-dev (12.07.2001).
I want to use the request in a dynamic generated Stylesheet using the
following sitemap:

   <map:match pattern="test.xsl">
     <map:generate type="serverpages" src="stylesheet.xsp"/>
     <map:serialize type="xml"/>
   </map:match>

   <map:match pattern="test.html">
    <map:generate type="serverpages" src="page.xsp"/>
    <map:transform src="cocoon://test.xsl">
      <map:parameter name="use-request-parameters" value="true"/>
    </map:transform>
    <map:serialize type="html"/>
   </map:match>

I have the following im my stylesheet.xsp for testing:

    Request Parameter:
    <ul><xsp:logic>
    {
      java.util.Enumeration x = request.getParameterNames();
      while(x.hasMoreElements()) {
        String s = (String) x.nextElement();
        <xsp:content>
          <li><xsp:expr>s</xsp:expr> =
<xsp:expr>request.getParameter(s)</xsp:expr></li>
        </xsp:content>
      }
    }
    </xsp:logic></ul>

But there are no parameters outputted! Is it a bug or my mistake?
Please help.

Christoph Gaffga



---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>

Reply via email to