On Wed, 30 Jan 2002, Marc-Olivier Bernard wrote: > > Hi there, > > Sorry for my quite basic question, > > I wanted to try to mix util and param taglibs like that : > > <util:include-file><xsp:attribute > name="name"><param:num/>.xml</xsp:attribute></util:include-file> > > (i get them work separatly), > > But the code produced doesn't work (I'm not surprised). Is there a way > to indicate the *order of XSP processing* (here param firstly, then > util) ?
It's not an order of processing thing, is the expectation that <xsp:attribute> will do the right thing there - it won't... However the gods are with you. You just need to specify the name as a sub-element: <util:include-file> <util:name><param:num/>.xml</util:name> </util:include-file> Of course this is in the docs, but perhaps not entirely clear. -- <!-- Matt --> <:->Get a smart net</:-> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
