0
votes
2answers
56 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 …
0
votes
2answers
39 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 d …
0
votes
1answer
27 views
Dynamic XSL file
I have 3 XSL files which have paths in them to something like C:\templates\Test\file.pdf
This path isn't always going to be the same and rather than having it hard coded in the XS …
1
vote
2answers
117 views
Passing parameters to XSLT Stylesheet via .NET
Hello,
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 …
0
votes
2answers
69 views
XslCompiledTransform causes grief with Infopath
I am not an infopath developer and this is my first real encounter with XSLT. Lately i've had to work on a project where i need to convert an infopath form uploaded to Sharepoint i …
1
vote
1answer
47 views
XslCompiledTransform output as XPathDocument
I am trying to use a XslCompiledTransform, and use the output as a XPathDocument.
Any Ideas?
0
votes
0answers
29 views
Infopath Master Detail Section Lost after XslCompiledTransform
We have a web application which parses Infopath Xml forms hosted in Sharepoint environment and converts them to Html. We then convert to any desirable format using other third part …
0
votes
1answer
197 views
In .NET, how do I write a UTF-16 XMLDocument to a string with a BOM
I am building an XmlDocument on the fly in .NET with an xml document. I then transform that with the Transform() method of an XslCompiledTransform.
The Transform() method threw an …
0
votes
1answer
184 views
XslCompiledTransform and Serialization
Hello,
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 st …
3
votes
3answers
462 views
XSLT self-closing tags issue
Hi,
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>
beco …
0
votes
2answers
352 views
How to resolve XSL includes in a Transformation that loads XSL from a String?
.NET 2.0/VS2005
I am trying to use the XslCompiledTransform class to perform a XSL Transformation. I have two XSL files, the first of which includes a reference to the other in th …
0
votes
1answer
65 views
How come resolve-QName() is an unknown XSLT function when using XslCompiledTransform ?
I try to transform a WSDL 1.1 to WSDL 2.0 using the XSLT 2.0 stylesheet from W3.org WSDL 1.1 to WSDL 2.0 convertor.
I'm working in .NET (C#) using the XslCompiledTransform.
Anyon …
0
votes
3answers
664 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 XslCompiledTrans …
0
votes
1answer
169 views
Setting XslCompiledTransform Outputsettings
Hi,
I am writing bit of code that relies on XslTransformation of one submodule.
Since the XslTransformation exposes a XmlWriterSettings field called Outputsettings I thought it …
1
vote
1answer
194 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 lo …
