Yves Vindevogel wrote:

<dashboard>
<execute-query xmlns="http://apache.org/cocoon/SQL/2.0";>
<query>
select * from tblDashboard
</query>
</execute-query>
</dashboard>
</report>
</xsl:template>
</xsl:stylesheet>

Did you try with a prefix instead of a default namespace?
Like:

<sql:execute-query xmlns:sql="http://apache.org/cocoon/SQL/2.0";>
<sql:query>
select * from tblDashboard
</sql:query>
</sql:execute-query>

Askild
-

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to