xml-transform

Biztalk maps: Grouping different nodes into a list

Hello, Is there a way of achieve the following transformation in the BT mapper? if not, any smart idea? <Person> <Age>25</Age> <Name>Paul</Name> </Person> to: <Person> <CustomProperties> <CustomProperty> <Name>Age</Name> <Value>25</VAlue> </CustomProperty> <CustomProperty> <Name>Name</Name> <Value>Paul</VAlue> </CustomProperty> </Cu...

Using Microsoft's xml document transform to transform web.config is adding unwanted whitespace.

I'm using an XML-Document-Transform to transform my web.config file for deployment to a staging server. Unfortunately it isn't transforming exactly as specified and is adding some whitespace to an element's text. This whitespace is then being picked up by the Castle Windsor configuration that I use and bombing the application. Here's ...

Is there any C++ XSLT library?

I want to transform an XSD Document into XML Document(Template), is there any C++ XSLT library? ...

XQuery vs XSLT for transfroming data

Which one of them do you use in your applications in order to transform XML data to other data types? WHY? ...

Selecting unique records in XSLT/XPath

I have to select only unique records from an XML document, in the context of an <xsl:for-each> loop. I am limited by Visual Studio to using XSL 1.0. <availList> <item> <schDate>2010-06-24</schDate> <schFrmTime>10:00:00</schFrmTime> <schToTime>13:00:00</schToTime> <various...

set size of image with xsl

I have a XML that contains img tag <xml> <img src="/path/to/file.jpg" orginalwidth="150" /> </xml> I want to have: <img src="/paht/to/file.jpg" size=SIZE /> Where SIZE is minimum of orginalsize and 100px ...