<map:match pattern="*.html">
<map:generate src="{1}.xml"/>
<map:transform src="saluto.xsl"/>
<map:serialize type="html"/>
</map:match>
I see two problems here:
1. You are using the default generator (usually this is the FileGenerator). If you want to have your XSP pages compiled, you should use the ServerPagesGenerator:
<map:generate type="serverpages" src="{1}.xml"/>2. You are referring to a stylesheet called "saluto.xsl" but your previous example used a name of "greeting.xsl".
Assuming number 2 is due to a typo, the source of the problem is probably number 1.
Ugo
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
