Hello,
I have these four pipelines :
1/
<map:match pattern="start">
<map:generate type="XMLDB="indexdefinition.xml"/>
<map:transform type="xslt" src="proto/xsl/start.xsl"/>
<map:serialize type="html"/>
</map:match>2/ <!-- Frame page (the xsl call search and empty pattern)-->
<map:match pattern="frame">
<map:generate type="file" src="proto/xml/frame.xml"/>
<map:transform type="xslt" src="proto/xsl/frame.xsl"/>
<map:serialize type="html"/>
</map:match>3/ <!-- Request the database -->
<map:match pattern="search">
<map:generate type="Request"/>
<map:transform type="Query"/>
<map:transform type="xslt" src="proto/xsl/documents.xsl"/>
<map:serialize/>
</map:match>4/ <!-- Empty page-->
<map:match pattern="empty">
<map:generate type="file" src="proto/xml/empty.xml"/>
<map:transform type="xslt" src="proto/xsl/empty.xsl"/>
<map:serialize type="html"/>
</map:match>My question is :
Start.xsl create a form. The values should be send to the frame pattern and then to search pattern.
How can I pass into the different pages ?
I was thinking about adding a sunshine session transformer, is it a good idea ?
Thanks.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
