Sanjay,
It seems like you are confusing the templates that go inside an XSLT
file with the choice of different XSLT files that your application can
process. I am listing some key points. Hope they help.
1) Notification Services knows only which xslt file to pick. Once it
picks a xslt file, Notification Services does not care what templates
are defined in the file, or what your XSLT file looks like.
2) You can only specify one XSLT file name in your ADF file. You have
to create multiple xslt files with the same name and arrange them in a
specified folder structure for NS to pick the one you want it to
process. Look at an example below:
If you are supporting three cultures (en, en-us, and fr) and you
specified Sanjay.xslt as your xslt file in appADF.xml, this is what
you folder structure will look like starting from your base default
directory :
-> Sanjay.xslt <file>
->en <folder>
->Sanjay.xslt <file>
->en-US <folder>
->Sanjay.xslt <file>
->fr <folder>
->Sanjay.xslt <file>
This way, if your subscription has a locale setting of fr, then the
Sanjay.xslt file under the fr folder will be processed, and if it has
a locale setting of en-US, then the one under the en-us folder will be
processed.
Same folder structure would apply if you have different Devices.
[quoted text, click to view] "sanjay" <anonymous@discussions.microsoft.com> wrote in message news:<12a901c4a5ea$5d502400$a601280a@phx.gbl>...
> Hi All,
>
> How NS selects one template from the many i specify in my
> XSLT.
>
> Regards,
>