December 10, 200619 yr Newbies I want something like this: <?xslt-cwp-query param="name=$client-user-name&-find"?> Is this possible? Thanks.
December 10, 200619 yr No, it is not possible in the <?xslt-cwp-query?> processing instruction, because the $client-user-name parameter is not defined at this position, and according to FMI this instruction must be at the beginning of the stylesheet. But there is another solution. You have to use the XSLT document() (see FMSA CWP Guide, p. 61, loading additional documents) and the XPath concat() functions. Define first a variable like this: Use & instead of & in this query. This loads the XML tree returned by FMSA into the variable. Later you can reuse the variable in the same stylesheet: E.g. in a for-each loop: . . .
Create an account or sign in to comment