Can I access to the requets parameters from  a tag-lib?

I've created a tag-lib: "pccom-util" and inside I need an xsl-variable with
request parameter, to know what xsp code to generate.

I've tried to declare xslt transformer with this line:
    <use-request-parameters>true</use-request-parameters>

but it isn't taken effect with the tag-libs. It seems to be because file
generator isn't use this specification for the xslt-transformer that it
employs to apply the tag-lib.

Another solution tha I've tried is:

<xsp:page
  xmlns:xsp="http://apache.org/xsp";
  xmlns:pccom-util="http://www.pccom.es/pccom-util";
  xmlns:xsp-request="http://apache.org/xsp/request/2.0";
  language="java">


<pccom-util:origenes pagina="ficha">
<xsp:element name="pccom-util:origenDatosFicha">
       <xsp:attribute name="contenido">
            <xsp-request:get-parameter name="contenido"/>
       </xsp:attribute>
        <xsp:attribute name="id">
           <xsp-request:get-parameter name="id"/></xsp:attribute>
       </xsp:element>
</pccom-util:origenes>

But it fails because I would need to execute 2 times the xsp code.
One to put the request parameter into the attribute of my tag. And another
to execute my tag with these parameters.

Any idea???

THANKS and please be patient with my english


---------------------------------------------------------------------
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