Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
148 views

Using xslt get node value at X position

How can I get using xslt, node value at X position, without using foreach <items> <item1>x</item1> <item2>x</item2> <item3>x</item3> </items> This is ...
3
votes
2answers
3k views

successor of msxsl.exe?

We intend to migrate our framework from msxml4 to msxml6. We where using msxsl.exe as yet. It seems to support only MSXML versions up to 4.0, as command line msxsl.exe -u version 6.0 tells me. Is ...
2
votes
0answers
68 views

Issue using assemblies and namespaces in msxsl

I have an XSL transform that is using msxsl to add extension methods in C#. I have the following setup for msxsl: <msxsl:script language="C#" implements-prefix="cs"> <msxsl:assembly ...
2
votes
1answer
219 views

how to pass a parameter and use that in my xslt

i have a xml file and a related xslt file. I am using msxsl.exe and i need to pass a parameter as a command line argument and use that in my xslt file. how can i do that??? command: msxsl.exe ...
1
vote
1answer
173 views

is it possible to nest dynamic node-sets in xslt?

I'd like to know if it is possible to nest dynamic node sets in XSLT and if so, how to select them using xPath. This is part of a bigger task. I'm only showing the part that I'm stuck on. This is ...
1
vote
5answers
371 views

how to iterate through XML param in XSLT

I have an XML file that I am transforming via XSLT. I am passing an XML as parameter to the XSLT via C#. The parameter's name is attachment and it contains XML. It is written as follows: ...
1
vote
3answers
142 views

How can I use the XPath expression “document('')” in a .NET XsltCompiledTransform? Should I?

I'm currently working on a web site where we're sending down XML+XSLT to clients that support it, to save on bandwidth. However, if a client doesn't support it, we're doing the transform on the server ...
1
vote
3answers
898 views

xml merge two files using xsl?

I need to merge two similar xml files, but only records which match on common tags, e.g.<type> in the following example: file1.xml is <node> <type>a</type> ...
1
vote
1answer
492 views

XSLT: Using an assembly for scripting in a referenced XSL template

There are two XSL files. One includes another using an <xsl:include>. The main template desides which actual templates to call depending on node values, and included templates contain actual ...
0
votes
1answer
61 views

calling function with xslt using xpath selection

How can I call javascript/c# function in xslt passing xpath selection value. Here is how I call function with manualy typed parameter: <xsl:value-of select="cs:my('some text')"/>
0
votes
1answer
28 views

XSLT works in VS but not in ASP.NET runtime - fails with 'Cannot find script'

I am using xslt functions from MSXLT <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" ...
0
votes
0answers
42 views

Declare temporary variable in ms:script

I'm writing XSLT for my application and using ms:script there. I want to declare temporary variable there like: private ClickTrackersHelper ctHelper; public int GetLinks(string playlistId) { ...
0
votes
2answers
483 views

Transform XML using XSLT in Internet Explorer

I need JavaScript script to parsing of XML files through XSLT sheet to XHTML code. I've code compatible with Firefox, Opera and Safari. function loadXMLFile(path) { var file = ...
0
votes
2answers
145 views

Copy the attributes in XSLT

Now I have an XML file as below: <DM Name="A DM"> <DV id="SQL:Select something from db" Name="DV 1"> <Sample aid="SQL:Select something from db" /> </DV> <DV ...
0
votes
2answers
251 views

How to only convert an XML file's attribute using XSLT, and leave the other content?

I have a xml file as below, and now I want to use the XSLT to transformer it, keep all the elements and attributes, but if it happen to the attributes with the value started with "SQL:", then execute ...
0
votes
3answers
3k views

XSL: Avoid exporting namespace defintions to resulting XML documents

I'd like to take data from some XML files and transform them into a new XML document. However, I do not want the definition of a namespace in the XSLT to occur in the result document. In other ...