1
vote
0answers
20 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
3answers
52 views

Create XML in memory and pass to another method to transform via XSLT

This is what I'm trying to do. I'm sure the solution is simple, I just haven't found it yet (and believe me I've been trying). I have an object that I want to use to create XML data. (I'm using an ...
0
votes
2answers
36 views

Access an XSLT file as resource from same project?

I have an XSLT file that I want to load and use to transform an XML file. I've added the file to the same project as the code that uses it and put it in the "Resources" folder and set the Build Action ...
1
vote
1answer
115 views

c# xml encoding — getting garbled characters

My aim here is to convert the original xml file through some xsl to the destination having a utf-8 encoding. Here is the original xml file with the following header: <?xml version='1.0' ...
0
votes
1answer
20 views

XSLT Muenchian grouping - strange behavior

I am using Muenchian grouping in XSLT in .NET to group indicator elements by date. Snippet of my XML and XSLT: <financials> <indicator> <date>2010</date> ...
-1
votes
1answer
55 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
0answers
25 views

Using a web application to read and collect elements from XSL file

I have xsl page which include a number of templates cover all i need to create the webpages i want, i call the templates using nodes into another xsl file, I need to call and collect the templates ...
0
votes
1answer
43 views

Using a webpage/web application to read and collect elements from XSL file

I have xsl page which include a number of templates cover all i need to create the webpages i want, i call the templates using nodes into another xsl file, I need to call and collect the templates ...
1
vote
2answers
195 views

Remove XML namespace declration from XSLT output root?

Having the following input XML: <?xml version="1.0" encoding="utf-8" ?> <customSettings xmlns:env="urn:schemas-test-env"> <connectionStrings> <add name="Name" ...
1
vote
1answer
59 views

How to remove nodes having attribute value different from given using XSLT?

In given pretty simple and standard config: <?xml version="1.0" encoding="utf-8" ?> <configuration xmlns:env="urn:schemas-test-env"> <appSettings> <add key="Name" ...
0
votes
1answer
32 views

StringBuilder to XMLNode

I have an XslCompiledTransform object that I use to transform an XML fragment. The transformation works right and outputs the new content to a StringBuilder object. What is the best way to create a ...
1
vote
0answers
38 views

xslt debugging shows all values as null

I am using visual studio 10 premium with .Net 3.5 and trying to debug an XslCompiledTransform. I can step through everything OK but all variable values seem to be shown as NULL. For instance ...
0
votes
2answers
54 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 ...
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"> ...
-1
votes
1answer
38 views

xslt for xml from dataset

I have the following data format in my dataset. I need to come out with an xml using xslt. I have tried with some xslt stuff which does not works. An example can help me a lot. I am tried following ...
0
votes
2answers
114 views

Can I save an xslt (xml control output) as a pdf in vb.net

I want to save what a user is seeing on screen as a pdf file. I am using an xml control and the user is looking at the output of an xslt all nicely formatted the way I want it to look on the pdf. I ...
-2
votes
1answer
139 views

How to access C# static method (might be in static class) from existing assemblies in Xslt?

How do we access static methods from static class in Xslt? The static class is already defined in an assembly. Here is the definition of the static class I want to refer namespace Helper { ...
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
49 views

How to increment the inner loop index from its previous state in XSL

How to increment the inner loop index from its previous state in XSL. what could the best approach, whether to maitain a seperate global variable best or use any inbuilt function. I am new to XSL so, ...
1
vote
1answer
242 views

Umbraco “Error Parsing XSLT File”

I built a website using Umbraco 4.9.0 and all is well locally. I published it and run it from IIS. But it now works, except that for XSLT file (Breadcrumb) referenced on the landing page it says ...
3
votes
2answers
130 views

Check if extension object is defined in xslt template

I'm using XSLT in my .NET (C#) project. I want to know if it is possible to check inside XSLT template if an extension object was defined in (added to) XsltArgumentList. XSLT namespace declaration ...
0
votes
2answers
207 views

Retrieving document types in xslt file in umbraco

Very new to Umbraco and .net, have been getting on fairly well putting my first site together. However, I've hit a bit of a stumbling block where I have set up a document type called Testimonial ...
3
votes
2answers
244 views

xslt recursive template on parent-child data

I'm trying to wrap my mind around xslt. A number of questions here on stackoverflow help ( XSLT templates and recursion and XSLT for-each loop, filter based on variable ) but I'm still kinda puzzled. ...
0
votes
1answer
80 views

Xslt for each with xpath and condition

I have a xslt template and a xml document like below: Normally any data inside xml is exported like this: <Cell><Data ss:Type="String">sss</Data></Cell> I want to make some ...
2
votes
1answer
202 views

Foreach with nested dictionary in xslt

I have a dictionary with the following values: <root user_salutation="Geachte heer" wg="7" wgList-0="68" wgListCount-0="3" wgList-1="65" wgListCount-1="1" ...
0
votes
1answer
61 views

ms:script tags in XSLT

I am attempting to migrate an ASP Classic application to .Net 4.0 (4.5 would also be acceptable). The application is responsible for performing XSL Transformations using Javascript extension ...
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 ...
1
vote
2answers
379 views

How to use Xpath to insert into xml files

<feed> <entry> <data>1234</data> <content>Stackoverflow</content> </entry> </feed> Next data.. I have to create above xml ...
1
vote
2answers
63 views

Set of xslt with duplicate information

I have a lot of xslt files which sometimes contain totally duplicate information of some the same object. Is there a possibility to carry it to another xslt and include it inside the existing ones? ...
0
votes
2answers
111 views

Convert date to ccyymmdd using javascript

I need to use JavaScript to covert a date to to from '2012-09-15T00:00:00' to a CCYYMMDD format? How can I do this?
2
votes
3answers
51 views

Couting Records in XSLT File

I have a template for a trailer record that has a parameter 'numberOfRecords' . <xsl:template name="render-FileTrailer"> <xsl:param name="fileRecordIdentifier" select="TR"/> ...
0
votes
1answer
196 views

parse or convert HL7 message to HTML page

Given I have a HL7 message V 2.x or v3.x and I need to transform it to pretty HTML page to display its contents in reading mode. is there an XSLT template (or library) that can help ? is there a ...
0
votes
0answers
155 views

Connecting to Oracle db using VB Script in an XSLT that gets processed by .NET code

I have a .NET code that uses an XSLT for transforming an XML and firing the transformed XML to another webservice. I need to be able to query the Oracle db in the XSLT using VB Script and find an info ...
0
votes
1answer
182 views

Error Loading External XSLT in c#

I've got an XML document, which Im trying to add an xslt to in c# and output to screen. I've been doing some research on this and it looks like I need to use the XslCompiledTransform class to do this. ...
0
votes
1answer
106 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" ...
0
votes
1answer
149 views

Convert Multiple XML files and XSLT files to One PDF using c# [closed]

How can i Convert Multiple XML files and XSLT files to One PDF using c# ?
0
votes
1answer
533 views

“Illegal character in path” using XSLT

I'm getting an "Illegal character in path" exception when I call the Transform method of the XslCompiledTransform class. Here is my code : // Maybe there is a problem in this path string xsltPath ...
0
votes
3answers
195 views

Combine XML and XSD files

I have following XML file: <my:myFields xmlns:my="http://schemas.microsoft.com/office/infopath/2003/myXSD/2012-05-05T12:20:38"> <my:Text1></my:Text1> <my:Group> ...
2
votes
2answers
518 views

Writing out umlaut chars in XML?

I need to write the "&#D;" equivalent of a umlaut char to an xml. Example if the string is "für" then the expected output is "f&#252;r" the &#252; being the equivalent of ü Here is the ...
8
votes
1answer
3k views

how to use xslt 2.0 in visual studio 2010

I am using xslt 2.0 for transforming one xml format to another xml format.But Visual Studio 2010 supports only xslt1.0. So, I referred the stackoverflow link and followed the procedure they said.But ...
4
votes
3answers
371 views

Line breaks in XSLT formatted code documentation (xml)

Our WinForms based application takes documentation files that were generated by Visual Studio (Xml documentation), performs some XSLT transformation and displays the result in a WebBrowser control ...
2
votes
1answer
233 views

does msxsl memory leak bug fixed in .NET 2 or .NET 4?

I'm working on a project that involves XSLT. And would like to use a C# script in my XSLT. Just like in the following link. XSLT 1.0 Get Current DateTime Although I ran into this KB article ...
0
votes
1answer
83 views

msxsl:node-set strange behaviour

I am new to the xslt and is getting the following behavior. I am getting different result when trying to count the items using node-set that has a pattern condition on it. The result change depending ...
0
votes
2answers
109 views

Xpath select escaped node with a node

I have this xml : <text> blah blah &lt;strong&gt; hello &lt;/strong&gt; more text &lt;strong&gt;hello again&lt;/strong&gt; blah blah </text> How do I ...
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
75 views

Can Saxon XSLT processor be used with the XMLControl in ASP.NET?

The title pretty much says, it - Is it possible to use the Saxon XSLT Processor to be used along with the XMLControl in ASP.NET? If not, are there any approaches, whereby I can insert a transformed ...
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 ...
4
votes
3answers
112 views

Wanted: xsl:template that converts a node to its hexavigesimal value?

I can almost here you say: "What the @##$# is a hexavigesimal value?" A hexavigesimal numeral system has a base of twenty-six. Alternatively, base-26 may be represented using only letters of the ...
0
votes
1answer
95 views

How to run xml data(getting as the response from service) against a XSL and get html output in C#

I need to display the response of a service(getting as XML) in a row column way. We have an XSL file to do formatting. now I need to know how to do using C# 4.0 I do not want to save the XML file or ...

1 2 3 4 5 6