hello all, I get some trouble when try to transmit parameter to <map:act>
when I call a URL, like http://localhost/cocoon/exercise/test/en/get.xml?param1=**¶m2=**
<map:match pattern="/*/*/*/get.xml">
<map:act type="serverpages" src="" href="file:///C:/test.xml">file:///C:/test.xml">
<map:parameter name="data" value="/{1}/"/>
<map:parameter name="testcase" value="{------}"/>
<map:generate src="">
<map:serialize type="html"/>
</map:act>
<map:generate src="">
<map:serialize type="html"/>
</map:match>
but now the problem is, for the value of parameter "testcase", the only way to get the value is from another pipeline, which process those request parameters (param1, param2). I try to add this process before "act", but it couldn't work, because I have 2 "generate". then How can I transmit the parame value to <map:act>.
