T
Tjerk Wolterink
Helo i'v an xml file like this:
<bestand>
<id>8</id>
<beschrijving type="string"><![CDATA[film voorcafe]]></beschrijving>
<file type="file"
mime-type-image="/xcm/mime_types/movie.gif"><![CDATA[voorcafédrietevol.avi]]></file>
</bestand>
But the xml processor says:
"XML parser error 4: not well-formed (invalid token)"
That is because of the é in voorcafédrietevol.avi
How do i solve this problem,
The value voorcafédrietevol.avi is read from a database, i want
to support characters like this, but how?
Is this the solution: <?xml version="1" encoding="ISO-8859-1"?>
????
I think so, but why?
<bestand>
<id>8</id>
<beschrijving type="string"><![CDATA[film voorcafe]]></beschrijving>
<file type="file"
mime-type-image="/xcm/mime_types/movie.gif"><![CDATA[voorcafédrietevol.avi]]></file>
</bestand>
But the xml processor says:
"XML parser error 4: not well-formed (invalid token)"
That is because of the é in voorcafédrietevol.avi
How do i solve this problem,
The value voorcafédrietevol.avi is read from a database, i want
to support characters like this, but how?
Is this the solution: <?xml version="1" encoding="ISO-8859-1"?>
????
I think so, but why?