xsl-list
[Top] [All Lists]

Re: [xsl] Escaping data in XML attributes

2008-02-10 09:37:31
At the risk of giving you an answer that you don't want to hear, the most efficient solution is probably to change your XML format so that you put this kind of content into elements, not attributes. In the long run, that will make life a whole lot easier for you; of course, it will require some changes in the short term, and whether you can do that depends on impacts, schedules, etc.

In general, it's always going to be most efficient if you work with the technology, not against it, and that means going with the technology's strengths where you can, not its weaknesses.

Cheers, Tony.

On Sat, 09 Feb 2008 14:50:49 -0000, Robert La Ferla <robertlaferla(_at_)comcast(_dot_)net> wrote:

I have an issue that I need assistance with:

Let's say that my database returns this XML unfriendly name that I need to insert into an XML document.

"Bob's Black & Tan "Boston Branch <1>"

As you can see, the value returned has double quotes, single quotes, angle brackets and an ampersand.

I could put the value in a child element of my company element like this:

<company>
<name><![CDATA["Bob's Black & Tan "Boston Branch <1>"]]></name>
</company>

but that would require a massive rewrite of my XSLTs and XML because I currently use attributes for values like name, etc...:

<company name="Bobs Black and Tan"></company>

and I have many elements similar to this like <account>, <employee>, etc...

Is there a way I can still use attributes yet escape these unsavory characters? What's the most efficient way of solving this?

--
Anthony B. Coates
Director and CTO
Londata Ltd
UK: +44 (20) 8816 7700, US: +1 (239) 344 7700
Mobile/Cell: +44 (79) 0543 9026
Data standards participant: genericode, ISO 20022 (ISO 15022 XML), UN/CEFACT, MDDL, FpML, UBL.
http://www.londata.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>