1
vote
2answers
35 views

xslt-param processing instruction - pass a value from xml document to xsl stylesheet

Im doing a uni assignment and cannot (for the life of me) find any information online about the "xslt-param" xml processing instruction. There is information about "xsl:param" but its not the same ...
0
votes
1answer
48 views

XSLT to convert the nested elements with comma seperated

I am trying to just convert any xml file to CSV format. the issue as when the xml has nested / child elements those values are not output as comma seperated. i have tried lot of examples in other ...
0
votes
0answers
35 views

How to transform xml with xslt and display it in Android webview

I am trying to display the xml data, which was transformed by xsl file, onto the webview in an Android application. However, the data is not displayed as expected. XML file used ...
0
votes
0answers
50 views

splitting xml node into two separate nodes with extraction of some values and joining them in the second node

The next problem is very similar to my previous questions but it seems to me to be much more complicated. Given the xml configuration file <config width="100" height="200"> <parameter ...
0
votes
2answers
36 views

Use XSLT to change elements to attributes and shorten names

I have a scenario where I need to convert: <Hand id="left"> <FingerOne>Thumb</FingerOne> <FingerTwo>Pointer</FingerTwo> ...
1
vote
1answer
18 views

Can't find what XPath function this belongs to

I'm currently trying to understand a XSL document I am working on and have come across this <xsl:when test="(string(@hideIfHardwareIs)='')> I found that in XSLT 2.0 there is fn:string(). Is ...
0
votes
1answer
27 views

splitting xml root into two branches - with option of removing unwanted attributes

The problem is really similar to my previous one (how to split xml root into two branches - with all but a specific child in the first branch and the specific child in the second). As previously I ...
0
votes
1answer
30 views

how to split xml root into two branches - with all but a specific child in the first branch and the specific child in the second

The problem is similar to my previous one. This time I have a file: <config width="100" height="200"> <parameter name="account number" country="UK"> 12345678901234567890123456 ...
0
votes
1answer
36 views

how to split xml root into two branches in the same file based on attribute value of child elements

If I have this file <config someAttribute="sA" otherAttribute="oA"> <parameter name="p1" yetAnotherAttribute="yAA"> Something </parameter> <parameter name="p2" ...
0
votes
1answer
76 views

Java XML Transform - Strange Issue

I am having this strange issue that I cannot seem to figure out. Up until now, my transform methods seemed to have worked almost flawlessly, but the tool I am currently building is causing me some ...
1
vote
2answers
252 views

XSLT - transform two different XML files into one without duplication of elements

I have two different XML files: movies.xml and Amazon Product Advertising API XML This is my XSLT file that transforms both XML files: <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet ...
1
vote
1answer
49 views

xslt template match on child element value with specific attribute?

Lets say a have this basic xml document: <result name="response" numFound="73" start="0"> <doc> <str name="contentType">Content1</str> <str ...
5
votes
2answers
248 views

High speed XSLT to convert from XML to CSV

I have been trying to get CSV data from an XML document in most efficient time using XSLT. Following is my sample XML <?xml version="1.0" encoding="ISO-8859-1"?> <sObjects ...
0
votes
1answer
80 views

Get second value from XML (XSLT)

I have the following XML and I only want the second value... How can I do this? XML: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
2answers
92 views

Combine similar XML records/fields with XSL

I am trying to combine similar records (same UniqueID) with XSL. Here is my XML: <ExportXML xmlns="http://www.taleo.com/ws/integration/toolkit/2005/07"> <record> <field ...
0
votes
1answer
133 views

How to supply (xmlns) namespace during XSLT transform in Java

I need to transform below xml (without namespace) XML: <?xml version="1.0" encoding="UTF-8"?> <policy> <num-drivers>123</num-drivers> ...
0
votes
1answer
81 views

input xml to output xml transformation using xslt

I have a input and desired output xml file , but not able to write generic xsl transformer for that. Can anybody here help me out ? address/billing may have more elements at runtime, which should be ...
-1
votes
2answers
30 views

What is cstyle in XSLT?

My XSLT is shown below. aic is a namespace. What is cstyle? is it a built-in XSLT element/function? Or an element within the expected input xml? <xsl:stylesheet exclude-result-prefixes="aic" ...
0
votes
2answers
88 views

Best choice for runtime templating engine?

We're designing an app that will generate lots of different types of text output, eg email, html, sms, etc. The output will be generated using some kind of template, with data coming from a db. Our ...
1
vote
1answer
112 views

XML without namespace

I need to extract an XML out of an envelope. But I am not able to get my intended output. I need to get rid of the namespaces in my output. My Input: <ns1:input xmlns:ns1="http://mysapmle.org/" ...
2
votes
3answers
122 views

XSLT to find lowest price

i am beginner in XSLT and using to transform XML to XML. I require to get Prices tag which has lowest sum. Source XML: <Result> <Fares> <Fare> ...
0
votes
2answers
269 views

distinct-values from sequence using XSLT function

I'm trying to get the unique values of a custom generated sequence of strings in XSLT. The problem at hand is rather unusual since I have to first split a string on '.' and chop of the last bit, ...
2
votes
3answers
159 views

XSL transformation using Java: number format issue

I have JDK6 and using JAXP for the transformation. I am beginner to XSLT. Source XML: <Number> <Value>529.82</Value> </Number> XSLT: <xsl:stylesheet version="1.0" ...
2
votes
1answer
244 views

Using XSL compare two files and generate an output file

Using XSL I want to compare two file and generate an output file. File 1: <SalesExtractProcess> <PackageFormatVersion>3</PackageFormatVersion> ...
1
vote
1answer
135 views

XSLT Apply Template for Specific list of value

I am beginner in XSLT. My Source XML is as below <Options> <Option> <Data>Data1</Data> <Type>A</Type> </Option> <Option> ...
2
votes
1answer
264 views

Can partial config files linked to a web.config via configSource be transformed in a web project?

Looking for some help from anyone that's worked with SlowCheetah to transform config files under a web project. We're finding that partial config files referenced from the web.config are not being ...
0
votes
1answer
87 views

Organizing mapping code from one JSON object structure to another JSON object structure

I have this application where I read a sequence of JSON object ... say, j1,j2,...,jn and I need to transform them to j1',j2',...,jn' -- NOTE this is a JSON to JSON transformation. At the moment I'm ...
0
votes
1answer
197 views

Concat static URL string with dynamic xslt folder name umbraco

I'm trying to add a string in front of the src of the image html below so that the image tag looks like this... <img width="630" height="540" ...
2
votes
4answers
204 views

How to prevent ZipInputStream from being closed by after a XSLT transform?

I have a ZipInputStream that contains a number of XML files that I want to apply a transform to. The following piece of code loads the XSLT and ZIP files and loops through the ZIP entries, attempting ...
0
votes
1answer
47 views

How to prevent a value being overwritten?

I’m having trouble transforming some elements of a XML message. I need to swap some values, but after I copied the the value of the last node to the first, I’m unable to reach the original value of ...
0
votes
1answer
75 views

If result document already exists, skip transformation

I just want to execute my transformations via XProc instead of using a batch/shell script. my transformation process is a simple concatenation of in- and output documents - so the output of ...
1
vote
2answers
110 views

Using XSL, XSLT - How do you reproduce or print the XML document that it is transforming?

Without access to it the XML file or data, how can you reproduce a copy of the XML file that the web page is transforming using XSL? I have access to the xml.config file which contains XSL code. ...
1
vote
2answers
228 views

XSL: transform a XML file with another to filter it

Its me again, but this time i have a real problem... I have one XML, and i have to transform it in another XML by using a filter of another XML File_in.xml: <?xml version="1.0" ...
0
votes
2answers
203 views

XSLT loop over a set of files in the directory?

I have a situation where I have a directory full of xsd files that need conversion done to them generate a output file for each of them. I have my stylesheet operating on a single document fine, but ...
0
votes
1answer
124 views

pass <xsl:param> to <a href>

I try to pass parameter <xsl:param name="current_item" /> Before that I sent parameter as transformer.setParameter("current_item", "Ball"); But when I try to set this parameter as parameter ...
0
votes
0answers
171 views

Android: How to use xxx:node-set() for XSLT transform in Android

I have an XSL file which is successful in transforming my XML on the desktop browser. In that XSLT I am making use of the EXLT node-set() function. On trying to transform the same XML file using the ...
1
vote
2answers
149 views

xslt, fn:subsequance, java transformation

I have XML data <logData> <log> <id>1</id> </log> <log> <id>2</id> </log> <log> ...
2
votes
1answer
253 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
0answers
149 views

XMLStreamWriter,StreamingOutput Jersey - Apply XSL

I have a Jersey rest service/spring using springservlet which returns a streamingoutput of xml content. I am trying to apply xsl @ the server side ( I understand this might be a problem since I also ...
1
vote
2answers
135 views

xml xsl xslt eclipse only replacing/returning 1 value

hi guys ive been trying to transform this xml data im using eclipse also with saxon but when i try to do the transformation with saxon xslt2.0 i get a memory error i upped the memory in eclipse.ini ...
4
votes
1answer
269 views

XSL Transform C# - Root Element Missing

Long time reader first time poster! My question is relatively straight forward... Source XML: http://pastebin.com/xHnv20Ej XSLT: http://pastebin.com/bAk6sZ9V I'm trying to transform the XML using ...
1
vote
1answer
41 views

XSL: Spurious output using template match

I have an XSL stylesheet that I use to create xHTML fragments. The XML contains lots of information and I only want to transform one particular section, I match this like so (note this is my top ...
0
votes
0answers
142 views

XSL HTML output based on content

I need help with the following task: I already export an Excel-Spreadsheet via VB to XML and within the same macro I call the XSLT-Processor Saxon via command line to take my xsl-file and create ...
0
votes
2answers
185 views

How to parse XML using special character / using Transform

I am using javax.xml.transform.Transformer to transform XML using XSLT. In one of the attribute name has special characters '/'. And it is failing with error "Attribute name "XXX" associated with an ...
3
votes
3answers
245 views

How to transform xml structure using XSLT-1.0

I need to transform this structure <A> <B>value1</B> </A> <A> <B>value2</B> </A> into <A> <B>value1<B> <B>value2<B> ...
0
votes
2answers
539 views

Is there a way to have an <xsl:element> tag render *only* if its content template has either children or raw data i.e. complex or simple types?

Folks, Is there a way to have an tag render only if its content template has either children or raw data i.e. complex or simple types? Assume my XML Data looks like this: Data <Root> ...
0
votes
1answer
93 views

Generate xsl documentation

Id like to generate a visual "documentation" for my xsl using php. What I want to do is basically to transform my xsl without an XML inorder to display how the XML fields will be displayed in the ...
0
votes
1answer
143 views

Transforming xml using XmlDataSource conrol in asp.net 2.0

Using ASP.NET 2.0 i carried out below steps book.xml <?xml version="1.0"?> <greeting> Hello, World! </greeting> data.xsl <xsl:stylesheet ...
0
votes
3answers
241 views

XSLT 2.0 Header Leaks into Transformed XML

First, a thank you in advance. Second, this is my first post so apologies for any errors or wrongdoings. I am a noob w/ xml and xslt, and can't seem to figure this out. When I transform some xml ...
2
votes
3answers
219 views

Excluding namespaces from XML

My xsl file: <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:go="http://www.google.com" ...

1 2 3 4