Tagged Questions
The xml-encoding tag has no wiki summary.
7
votes
3answers
763 views
How do I XML-encode a string in Erlang?
I have a erlang string which may contain characters like & " < and so on:
1> Unenc = "string & \"stuff\" <".
ok
Is there a Erlang function somewhere that parses the string and ...
4
votes
1answer
535 views
Xml Escaping/Encoding terminology
I'm confused as for the difference between the terms "escaping" and "encoding" in phrases like:
Xml Encoding
Xml Escaping
Encoded Html
Escaped Url
...
Can anyone explain it to me?
1
vote
1answer
60 views
DOM4J Document: read an ISO-8859-1 xml
I need to read an xml file that is encoded in ISO-8859-1.
I'm using:
Document document = reader.read(new File(sourceFile));
document.setXMLEncoding("ISO-8859-1");
I'm getting a "cannot find ...
0
votes
2answers
92 views
How to fix a windows-1256 xml parsing error in android?
I have an error when parsing an xml document with sax parser in android. Can someone help me fix this error?
The error looks like this:
org.apache.harmony.xml.ExpatParser$ParseException: At line 5, ...
0
votes
0answers
92 views
Trouble with document title encoding for Google Search Appliance datafeed
I'm having trouble with encoding of characters in my GSA search results. I see 'entities' in the search result, and they aren't being decoded. I'm feeding data like this...
<record ...
0
votes
3answers
385 views
XSL and Flash XML breaks escaping
I have an XSL file I am loading in flash that includes the following snippet:
<xsl:text>•</xsl:text>
I load it this way:
_root.brochure_xsl = new XML();
...