Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
7answers
4k views

XSLT self-closing tags issue

I am using xslt to transform an xml file to html. The .net xslt engine keeps serving me self-closing tags for empty tags. Example: <div class="test"></div> becomes <div ...
4
votes
2answers
3k views

Passing parameters to XSLT Stylesheet via .NET

I'm trying to pass a parameter to an XSLT stylesheet, but all i'm getting is an empty xml document when the document is transformed using XSlCompiledTransform. This is the C# method used to add the ...
4
votes
3answers
1k views

XslTransform vs XslCompiledTransform

XslTransform appears to have been deprecated by Microsoft in favor of XslCompiledTransform. Theoretically, if I was doing just one transform during the execution of my application, shouldn't ...
4
votes
1answer
413 views

StackOverflowException loading XsltCompiledTransform

i have some big xslt crashing iis (StackOverflowException) when loading an XslCompiledTransform while the old (deprecated) XslTransform works fine. Is there some known issue with big templates? ...
3
votes
2answers
47 views

How do I resolve <xsl:import> and <xsl:include> elements with relative paths when using xsltc.exe XslCompiledTransforms?

As part of our web application's build process, I have set up our XSLT stylesheets to be built with Microsoft's xsltc.exe compiler whenever we run a full compile. During local development this has ...
3
votes
1answer
45 views

Is there a more efficient way to transform an XDocument that already contains a reference to an XSLT?

I have an XML file that already contains a reference to an XSLT file. I'm looking at converting this XML file, according to the referenced transformation rules, so that I can then create a nice PDF ...
2
votes
3answers
171 views

Xsl &#xA; for new line in transformation

I've this code : <a> <xsl:attribute name="href"> <xsl:value-of select="$foo"/> </xsl:attribute> bar </a> the probleme is after transformation I get : ...
2
votes
4answers
202 views

Problem with XSL sorting

I am having a problem trying to sort with an XSL file using the XslCompiledTransform in CLR4.0. Here is my sample XML file (Note: there is a space after the second <foo> element): <?xml ...
2
votes
3answers
123 views

xslt Parsing in .NET

Consider following snippet code for xml. <rootnode> <child id="child1" ><![CDATA[child 1]]></child> <child id="child2" ><![CDATA[child 2]]></child> ...
2
votes
1answer
1k views

How to migrate from XslTransform to XslCompiledTransform

I have the following code that I need to migrate from VS 2003 (.Net 1.1) to VS 2008 (.Net 2+) but I get compilation error - System.Xml.Xsl.XslTransform' is obsolete: This class has been deprecated. ...
2
votes
1answer
461 views

Merging two XPathDocuments using XmlCompiledTransform

I can't possibly be the first person to do this, it seems like it would be such a common practice to merge two documents using XSLT. However, I can't seem to find a single example on the ol' ...
2
votes
4answers
338 views

Hyphen in method name, is it possible in any .NET language?

I need to support a method named 'send-request' as an extension function to be used in an XSLT transformation. This is provided by an extension object on XslCompiledTransform. The cool thing about ...
2
votes
2answers
587 views

.NET Xsl script transform results in 'System.Object' is not defined or imported

XSL noobie but uttery stuck! I have a transform that formats a date using c# scripting function , this works fine when I am in VS 2008 and run "show xml output", the output is exactly what I want. ...
2
votes
2answers
1k views

Exclude XML directive from XslCompiledTransform.Transform output

I'm using an XsltCompiledTransform to transform some XML into a fragment of HTML (not a complete HTML document, just a DIV that I will include in page generated elsewhere). I'm doing the ...
2
votes
3answers
1k views

problem with XslCompiledTransform debugging in c#

i've tried and tried and tried but i cannot manage to step into the XslCompiledTransform without having to load the stylesheet from disk (by passing a URI into the XslCompiledTransform.Load() method). ...
2
votes
4answers
1k views

XslCompiledTransform vs. XslTransform and how about an OOM for good measure?

So for a while I've been using XslCompiledTransform because that's what Microsoft tells me I need to use as XslTransform is deprecated. Recently I had to use it with a transform that has nearly ...
2
votes
5answers
2k views

XslCompiledTransform.Load() raises System.IO.FileNotFoundException

My webapp(asp.net 2.0) consumes a webservices( asmx on 1.1 framework) on the same machine. After getting xml in return, I pass it to XslCompiledTransform for transform xml to html and it works fine. ...
1
vote
1answer
51 views

XSLT to transform an xml with repeated sibblings to a flat file

I have an xml like below: <?xml version="1.0" encoding="utf-8"?> <GetSavedReportResponse> <ResponseType>Success</ResponseType> ...
1
vote
1answer
39 views

XPath / XmlCompiledTransform: Test parent with XPath function

I am not sure if I'm really doing a mistake or if this is just not working properly: <xsl:if test="position() = 1 or parent::position() = 1"> <!-- do something --> </xsl:if> If ...
1
vote
1answer
71 views

XSLT extension method with variable number of arguments

I'm trying to implement an xslt extension function with variable number of arguments. If declare the parameter as an array, a params array, a ICollection, etc. i get the following error (where ...
1
vote
1answer
118 views

How to sort the elements (columns) in xslt to transform the xml file to csv format

<?xml version="1.0" encoding="utf-8"?> <Report p1:schemaLocation="Customer details http://reportserver?%2fCustomer details&amp;rs%3aFormat=XML&amp;rc%3aSchema=True" Name="Customer ...
1
vote
2answers
84 views

is it possible to put a cache the instance of XslCompiledTransform after Loading?

I need to save the result of the instance of XslCompiledTransform after the call of load method how can I do that?
1
vote
1answer
63 views

Approach for transforming XML to new XML format; If using Objects, limits configuration abilities?

Have a question regarding an approach to transforming XML from one format to another. I am working on a task in which I am taking serialized data from an object I do not have control over. I have ...
1
vote
1answer
202 views

XslCompiledTransform compilation error

I have this xslt stylesheet, in file Empty.xslt: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" ...
1
vote
1answer
124 views

XslCompiledTransform with objects and XSLT

I have added some properties and local variables to a class and would like to parse the object with XSLT to an XML/HTMLfile. Now here is the strange thing: when I have this: private double ...
1
vote
1answer
186 views

Getting the value from an XML element via XSLT using value-of

I know I'm missing something simple here, yet I can't figure it out. I have other, more complex, XML and XSLT that are working but for some reason I can't get this specific one going. I believe it's ...
1
vote
1answer
162 views

How do I include the css file in a XMLtransformation?

I'm creating an html file based on xml and xsl with XslCompiledTransform in c#.net. This works perfectly. But the xsl also has a css file included, and I'm wondering if there is any way to get this ...
1
vote
2answers
451 views

XML size limit for XslCompiledTransform

Is there any limit for XML size for which XSLT is applied by XslCompiledTransform in .NET (3.5)? Also, is there any limitation for a length of parameteres passed to XSLT? UPDATE: I have ment not the ...
1
vote
1answer
184 views

XslCompiledTransform fails for XSLT with many xsl:when conditions

I'm just in the process of upgrading a ASP.Net 1.1 application up to .Net 3.5 and one of the changes I've made is to use XslCompiledTransform rather than XslTransform. I was running through some test ...
1
vote
2answers
1k views

C# XslCompiledTransform using XmlDocument or XPathDocument when editing is required?

I'm going on a couple assumptions here: XPathDocument is not editable. XmlDocument is editable. XPathDocument is more efficient for XslCompiledTransform. That being the case (and please correct ...
1
vote
2answers
1k views

XSLT transform with multiple XML input files

Is it possible to perform a transform on multiple input XML files? It doesn't appear to be possible using XslCompiledTransform, but is there an alternative way of applying an XSLT?
1
vote
3answers
1k views

XslCompiledTransform output as XPathDocument

I am trying to use a XslCompiledTransform, and use the output as a XPathDocument. Any Ideas?
1
vote
1answer
1k views

XslCompiledTransform and Serialization

I am trying to implement some functions that will convert one object to another with XslCompiledTransform. I found some implementations for Serializing an object to XML string and DeSerialize the XML ...
1
vote
2answers
905 views

fastest in-memory cache for XslCompiledTransform

I have a set of xslt stylesheet files. I need to produce the fastest performance of XslConpiledTransform, so i want to make in-memory representation of these stylesheets. I can load them to in-memory ...
0
votes
0answers
7 views

while xsltransform.transform load method it was using more memory in C# window service

system is getting hang and recieving error like memory out of exception, by when i am using under for loop // Load the style sheet. XslCompiledTransform xslt = new XslCompiledTransform(); ...
0
votes
0answers
37 views

.Net Null Reference Exception in DocumentXPathNavigator

I've run into an interesting exception. On one of my production servers, occasionally I'll get the following exception. System.NullReferenceException: Object reference not set to an instance of an ...
0
votes
1answer
28 views

HTML Web Form from XSLT and POST user data as XML

I am facing one problem. I need to build a form submission system which is as followed - The browser renders the web form from an xslt file. The user fills up the web form and clicks on submit. The ...
0
votes
3answers
57 views

Omitting doctype declaration of an XML when applying XSLT

I have XML files which contains a doctype: <!DOCTYPE someName SYSTEM "fileName.dtd"> The file is provided by a 3rd party, I have no control over how it is generated. I use XSLT to transform ...
0
votes
3answers
79 views

How can I get self-closing tags in the output XML by using XslCompiledTransform?

Please help me... I have input XML document: <?xml version="1.0" encoding="utf-8"?> <Root> <Object> <GUID>201110180954525010129</GUID> <Meta ...
0
votes
0answers
69 views

XslCompiledTransform cannot find embedded xslt file

I recently had the need to embed a few xslt files into a dll xlsproject. The main xslt (ExtractContent) contains an reference to other xslt files ('xsl:include href="ExtractContentCommon.xslt"'). The ...
0
votes
0answers
54 views

Forcing Excel 2003 formatting on xslcompiledtransform

I am updating some C# code that transforms an XMLDataDocument into an Excel spreadsheet using XSLCompiledTransform. Whenever this code is run on a machine with Office 2007 installed it creates a ...
0
votes
1answer
96 views

Handling XSLT file names c#

Wondering how to best deal with a problem I am having with xsltransform. Long story short, everything works in my test environment, but it crashes when I run it on the server due to the filenames it ...
0
votes
2answers
109 views

XslCompiledTransform.Transform 64 bit Memory issues

Our application uses the XslCompiledTransform.Transform function. The behavior is normal if we run it in 32 bit mode, however when running under 64 bit mode, the memory consumption just jumps way too ...
0
votes
2answers
273 views

Problem with XslCompiledTransform and xslt in VB.NET

I am getting now where with this. I have an XML document that must be transformed using an xslt sheet. My code is as follows: Dim xStream As New IO.MemoryStream ' Create the ...
0
votes
1answer
70 views

Reg. xmlns issue in XSLT transformation

I'm trying convert xml from one format to other using the XslCompiledTransform in c#. Below is the stylesheet and the source xml, string xslMarkup = @"<?xml version='1.0'?> ...
0
votes
1answer
114 views

How to copy element content not just string?

My XML does have some styling within it. The output of the XslCompiledTransform Transform results in HTML which does not have these style tags. Is there some way to tell the XslCompiledTransform to ...
0
votes
1answer
232 views

XslCompiledTransform fails on xsl:import

I have few XSLT files, index stylesheet imports layout using xsl:import. VS says that XSLT is valid, but Load operation raises xslt compilation exception, it says cannot import my layout file. It ...
0
votes
0answers
303 views

Setting OutputSettings with XslCompiledTransform

I want to perform an XSL transformation using XslCompiledTransform and process the result document with XmlReader. I tried this: Dim doc As XmlDocument = New XmlDocument() Using writer As ...
0
votes
2answers
660 views

How can I remove or escape new line-carriage returns within an xml string in xsl?

I've got a pretty complicated problem that I'm having trouble finding any similar instances or information online. Hang with me and I'll try my best to describe my problem... I've got an asp ...
0
votes
2answers
285 views

XML with nested elements filtering with calculation using XSLT v1.0 C#

I have got a sample xml file where root has element with name "element". This elements can be nested. I would like to exclude elements with name "position" where "position" value x = ("number" + ...

1 2