-1
votes
1answer
54 views

Make xslt 2.0 document a xslt 1.0 document

I'm getting xslt 2.0 formed responses from a google search appliance and working with .net 3.5 I want to change these to xslt 1.0 documents. The reason is that the XSLCompileTransform crash working ...
0
votes
1answer
38 views

Apply templates to adjacent elements?

Given an input like the following: <p>Some information about the proceeding source listing:</p> <code language="CSharp"><![CDATA[ ... ]]></code> <code ...
2
votes
2answers
83 views

How do you sum the result of call-template in XSLT?

I've got some XML as follows; <risk> <driver driverId="2"> <vehicleUse>M</vehicleUse> </driver> <driver driverId="3"> ...
2
votes
1answer
99 views

Output Param from XSLT

I have been familiar with passing Input Param to XSLT CompiledTransformation class, so that parser takes care of XSL file making use of Param in processing instruction provided in XSL file. Is there ...
0
votes
1answer
33 views

Recursive xslt template not replacing all characters found

I've created this XSLT template below to parse through a block of text being converted for an HTML page. This template is used in multiple locations, however, it is not successfully converting the ...
2
votes
1answer
121 views

xml serving/reading error at System.Xml.XmlDownloadManager.GetNonFileStream IIS related?

I have an aspx page, that serves xml that is loaded in an xslt like this: <xsl:variable name="newsurl">http://mytesturl.dk/public/simpeldatalist.aspx?method=getnews</xsl:variable> ...
0
votes
3answers
68 views

XSLT 1.0 Meunchian grouping quesion

I appreciate your time and thanks in advance for helping me out! I find XSLT 1.0 Meunchian grouping very complex. If you can guide me on the following using xsl:key, that would be great. The actual ...
0
votes
1answer
77 views

Create a space filler template using xslt

I need to create two separate templates that fill space. One that occupies 49 spaces and the other fills 549 spaces. I found on template that I thinks may work but I can't really tell what its doing, ...
2
votes
1answer
207 views

indent and text nodes on xslt transformations with .net

I'm transforming XML to XML and would like to indent the result automatically. So I'm using <xsl:output method="xml" indent="yes"/> When running this through .net4 compiled transform, it works ...
1
vote
1answer
79 views

XSLT Position() based on column value

I am trying to create a gap between rows everytime the value of 'column3' changes. At the moment the gap is set to appear every 2 rows which is not what i need. For example the value of 'column3' in ...
0
votes
2answers
667 views

Xslt 1.0 XML to excel transformation issue

I'm using the .Net framework's XslCompiledTransform class as the XSLT processor (in other words Xslt 1.0). My requirement is that I want to convert an XML file to an Excel file (xls file) using XSLT ...
0
votes
0answers
249 views

Displaying Euro sign on PDF using XSLT 1.0

Summary: *Need to display € sign on pdf* I'm using the .Net framework (4.0)'s XslCompiledTransform class to perform XSLT. The font family used on the XSL is Times New Roman. I'm using FO.Net as my ...
4
votes
1answer
333 views

xslt V1.0 - subtemplate with recursive loop returns empty value

I'm trying to get the highest value of the sum of the childs of each cluster. cluster1 : 10 + 20 = 30 cluster2 : 20 + 30 = 50 --> 50 is highest value Problem: The return value of the subtemplate ...
1
vote
3answers
169 views

xml elements position

Here is an xml File <?xml version="1.0" encoding="UTF-8"?> <contact-information> <full-name>Peter John</full-name> <address_line_1>some ...