The xslcompiledtransform tag has no wiki summary.
1
vote
0answers
14 views
XslCompiledTransform from XmlDocument to XmlDocument
I have the following VB.NET code that I am using to transform some XML into new XML, that I then continue processing.
This is a one off process, not something that is done multiple times, so no ...
0
votes
1answer
21 views
How do I use XslCompiledTransform when input XML and transform XSL are strings. How do I get the transformation result as a string?
I have one string inputXMLString, and the second one containg transform XSL named transformXSLString. Both of them are correctly formatted xml's.
How to perform the transformation with ...
0
votes
1answer
107 views
Insert image (Byte[]) into word doc using XSLT & C#
I have an xml document that looks like this.
<?xml version="1.0" encoding="UTF-8"?>
<Job>
<ID>1</ID>
<Name>Front Window<Name>
...
0
votes
2answers
38 views
what's wrong with this XSL code?
when I apply the transform I get an exception: expression must evaluate to a node-set.
<xsl:for-each select = "some expression">
<xsl:variable name="a0" select="some expression"/>
...
0
votes
2answers
53 views
when working with XML files with non-default namespaces and XSL files, what's the proper way to write XPath expressions that .NET will understand?
I'm aware that when it comes to .NET (or at least the version of .NET I'm on), if I want to query data from an XML document that has a non-default namespace, I have at least two choices:
1. use the ...
1
vote
2answers
201 views
XslCompiledTransform.Transform replaces “"” with real quotes
Doing something like this:
using (XmlWriter myMamlHelpWriter = XmlWriter.Create(myFileStream, XmlHelpExToMamlXslTransform.OutputSettings))
{
...
0
votes
1answer
289 views
Get html as String with XslCompiledTransform. Result is empty
I want to create a html list () from an xml using xslt. I was able to do so with an xml file and a xslt file. Now I want to do it with an xml string or XmlDocument and and xslt file.
This is my ...
0
votes
0answers
43 views
Can I dispose of XmlReader after I have done XslCompiledTransform.Load(XmlReader)?
Can I dispose of XmlReader after I have done XslCompiledTransform.Load(XmlReader)? In other words, is the below implementation buggy or not?
private XslCompiledTransform GetXslt()
{
using (Stream ...
0
votes
0answers
101 views
Transform XSLT consisting HTML tags to RTF tags using C#
Problem statement: I have employee.xml, and a huge employee.xslt, the employee.xslt is formatted using HTML tags which I want to convert to RTF tags, by which I can generate an RTF file as an output ...
7
votes
4answers
695 views
Whitespace stripping with XslCompiledTransform
I'm trying to migrate a large app from XslTransform to compiled xsl files and XslCompiledTransform.
The app uses the Xsl to create HTML files, and the transformation data (Xml) was passed to the Xsl ...
0
votes
0answers
84 views
XsltCompiledTransform does not support passing and returning guid:
Hi I get the following error when i execute the below scritpt with XslCompiledTransform.
With XslTransform this works correctly, can anyone point me to why this behavior is changed and is there a ...
0
votes
1answer
104 views
Replacing all matching nodes in XML using XSLT
I wanted to replace all matching nodes in the xml-file.
To the original xml:
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
3
votes
1answer
885 views
XslCompiledTransform and custom XmlUrlResolver: “An entry with the same key already exists”
Is there a way to debug XSLT documents that are loaded from a database by a custom XmlUrlResolver or does anyone know, what the errormessage below is about?
I have a XSLT stylesheet that imports a ...
2
votes
1answer
173 views
Filter and remove element values from child to parent node xslt
Can someone tell me how to remove all the child elements and place them in a comma-separated line in the parent node, also removing thumbURl and title element of images completely I already have to do ...
2
votes
2answers
168 views
Spaces in XML element to show in HTML control
I am using C# 3.5. I have an XML string that I pass to XslCompiledTransform object. I then display the output in a WebBrowser. All is working great except that the XML elements contain extra spaces ...
0
votes
0answers
55 views
How to transform xml into multiple html pages based on the content of xml element?
I have an xml data file with similar structure.
<Items>
<Item id=1>
<Description>
Line 1
line 2
line 3
line 4
line 5
</Description>
...
0
votes
0answers
163 views
Writing umlaut chars to xml
I have an input xml to this an xslt is applied along with the XsltArgumentList variable. The desired output is to have the umlaut chars represented like this "ü" in the output xml.
I am using ...
2
votes
1answer
244 views
vb 2010 XslCompiledTransform need to Transform from string instead of from URI disk file
The following code works and takes the XSL and XML from local disk and returns the transformed XML to the variable Xtransoutput.
Dim XmlInputPath As String = "C:\Any.XML"
Dim XslInputPath As String = ...
0
votes
2answers
234 views
XslCompiledTransform exception when using Altova MapForce-generated XSLT file
I'm using .NET's XslCompiledTransform to perform an XSLT transformation. When I try using an XSLT file I've automatically generated using Altova's MapForce tool, I get the exception:
XSL conversion ...
0
votes
0answers
148 views
Xsl transform process via NANT does not update all xpath's requested
This is going to be hard for me to explain, but I'll do my best. Add comments for clarifications/additions to anything that I may be missing.
Background Info:
NANT (build process) version ...
0
votes
0answers
87 views
Application crashes using XslCompiledTransform.Transform method while running from network
We have an application that runs from network path. For some strange reason application crashes when we perform XSL transformation.
Details:
Application Framework: 2.0
Application Server: Windows 2008 ...
1
vote
1answer
258 views
Dynamically change namespace in xsl
A little tricky to explain what I am trying to do, so I will use an over-simplified example.
I have three Xsl-templates:
A.xsl, B.xsl and Common.xsl
Both A.xsl and B.xsl use "xsl:include" to include ...
3
votes
3answers
866 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 ...
1
vote
1answer
264 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>
...
0
votes
1answer
126 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
509 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 ...
3
votes
1answer
190 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 ...
1
vote
1answer
124 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 ...
0
votes
3answers
200 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 ...
1
vote
1answer
687 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 ...
0
votes
3answers
540 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 ...
1
vote
1answer
484 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&rs%3aFormat=XML&rc%3aSchema=True" Name="Customer ...
1
vote
2answers
250 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?
2
votes
3answers
973 views
Xsl 
 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 :
...
0
votes
1answer
154 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 ...
1
vote
3answers
445 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
681 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
174 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
204 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 ...
1
vote
1answer
116 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 ...
0
votes
1answer
560 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 ...
1
vote
1answer
591 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" ...
2
votes
1answer
206 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
380 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 ...
0
votes
2answers
1k views
How can I remove or escape new line-carriage returns within an XML string in XSL?
I've got an ASP multiline textbox that saves user defined text to a database. When I retrieve the data, I serialize it into xml and then run it through an XSL transform to output my HTML.
Within my ...
0
votes
2answers
538 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" + ...
0
votes
1answer
93 views
Merge functionality of two xsl files into a single file (continuation of my previous Q's…)
This is in continuation of my previous questions (sorry for re-posting similar type of question again):
Merge functionality of two xsl files into a single file (not a xsl import or include issue)
...
2
votes
4answers
349 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
1answer
342 views
XSLT stripping comments
I have a weird problem. Using XSLT transformations with PHP and for some reason, the compiled template file that is printed to the user strips all comments from the code. This never occurred before ...
2
votes
3answers
201 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>
...

