Tagged Questions
4
votes
9answers
4k views
XSLT: Cannot get xslt to output an (&) even after escaping the character
I am trying to create a query string of variable assignments separated by the & symbol (ex: "var1=x&var2=y&..."). I plan to pass this string into an embedded flash file.
I am having ...
3
votes
2answers
2k views
removing invalid XML characters from a string in java
Hi
i would like to remove all invalid XML characters from a string.
i would like to use a regular expression with the string.replace method.
like
line.replace(regExp,"");
what is the right regExp ...
3
votes
2answers
1k views
How To Parse XML With Invalid Characters in Node Name?
So I'm trying to parse some XML, the creation of which is not under my control. The trouble is, they've somehow got nodes that look like this:
<ID_INTERNAL_FEAT_FOCUSED_EXPERTISE_(MORNINGSTAR) ...
2
votes
1answer
89 views
How to stop .net Xml Serialisation inserting illegal characters
Anything below 0x20 (except for 0x09, 0x0a, 0x0d i.e. tab, carrige return and line feed) cannot be included in an XML document.
I have some data coming out of a Database and being passed as a ...
2
votes
1answer
1k views
filter/remove invalid xml characters from stream
First things first, I can not change the output of the xml, it is being produced by a third party. They are inserting invalid characters in the the xml. I am given a InputStream of the byte stream ...
1
vote
2answers
57 views
How to access array element “Array ( [#text] =>”
I had an XML that I turned into an array to sort it, now I want to save it as an XML again. This would not be a problem if I didn't have the following: [caseid] => Array ( [#text] => 885470 ...
...
1
vote
1answer
258 views
Strange Characters in XML File (from User Input?)
Hey guys, I have an application that saves data using XML. I recently received a bug report from a user who is unable to open her data file. The parser apparently failed when it encountered a bad ...