Hi,
I'm trying to leran :) how flows work at the moment and after playing with the examples I get a feeling how the things fit together. Now I wanted to test my knownledge own my own project.
I think it's a simple question:
How to get the ${continuation.id} in my XML/XSP? I need it in my woody form (which works fine). This is my sitemap (simplified) for 'myflow':
...
<!-- myflow using flow script with a simple
sendPageAndWait("forgotpass", ... ) <map:match pattern="myflow">
<map:call function="main" />
</map:match> <map:match pattern="*.kont">
<map:call continuation="{1}"/>
</map:match> <map:match pattern="forgotpass">
<map:select type="request-method">
<map:when test="GET">
<map:act type="woody-make-form">
...
</map:act>
</map:when>
<map:otherwise>
<map:act type="woody-handle-form-submit">
...
</map:act>
</map:otherwise>
</map:select>
<map:generate src="xml/templates/forgotpass.xml"/>
<map:transform type="woody">
...
</map:transform>
<map:transform src="xsl/html/woody-default.xsl"/>
<map:transform src="xsl/html/page.xsl">
...
</map:transform>
<map:serialize />
</map:match>...
I tried something like <wt:form-template action="{continuation.id}.kont" method="POST"> in my template but it's no substituted...
Would be great to get some hints! Thanks... Patrick
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
