Tagged Questions
1
vote
2answers
51 views
What is the best value for “Unit Separator” in XML?
I used Unit Separator (US/0x1f) in database. When I export to XML 1.0 file, it is not accepted and leave the attribute with empty value.
I have data in database like this:
...
0
votes
2answers
22 views
Why do we need “Entities” in DTD's and other places
I don't understand why we need !Entities in DTD's, as well in markup like HTML.
For example, I saw an entity defined as <!ENTITY copy "©">.
If we can clearly use the © symbol, why do we need ...
0
votes
1answer
67 views
SimpleXMLElement, How to Avoid Entity Errors? (Entity 'Acirc' not defined in …)
How can I avoid as many entity conflicts as possible in an environment where the XML doc is containing blog-post type content?
Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: ...
0
votes
0answers
28 views
undeclared entity warnings with php xml parser
i have read several of the questions that have dealt with undeclared entities.
My problem is a little different.
I'm following this procedure,to scrape various pages from the net.
1.first run the php ...
0
votes
1answer
41 views
How to use xml entity reference in eclipse
I'm trying to use XML entity reference in my workspace in Eclipse Indigo and am not able to refer the xml file as expected. I'm using the following syntax:
<?xml version="1.0"?>
<!DOCTYPE ...
-2
votes
1answer
138 views
html_entity_decode not working in XML dom nodeValue [closed]
I have the test.xml file where I want these node values to be encoded:
...
<section id="1">
<title id="2">></title>
<title id="2"><</title>
<title ...
2
votes
1answer
60 views
xml add photo with entity
I want to add photos in xml with entities, but I'm don't know how to call them in the xsl file
this is the xml code:
<!DOCTYPE cookbook [
<!NOTATION JPG SYSTEM "image/jpeg">
<!ENTITY ...
0
votes
1answer
56 views
Declaring an Entity in Android
I want to declare a new entity. I want the entity to be a symbol. Something simple like using a small image of a phone and the entity being &telephone;. I want to be able to use this symbol in a text ...
0
votes
0answers
15 views
How to get the title and the text of this news?
I would like to create a function that can classify the news in this link, if they contain or not some key-words in R.
http://www.noticiasaominuto.com/rss/economia
I tried to use the XML package, ...
0
votes
1answer
74 views
PEReference error with XML external ENITITY DTD
I have this XML code declaring an external DTD ENTITY:
<!DOCTYPE customers [
<!ENTITY % itemCodes SYSTEM "codes.dtd">
%itemCodes;
]>
This is simply to call up some pre-written codes ...
0
votes
0answers
253 views
@XmlRootElement overrides @WebResult in web service
I have a entity annotated with @XmlRootElement
@XmlRootElement(name = "Customer")
@XmlAccessorType(XmlAccessType.PROPERTY)
@XmlType(propOrder = { "id", "name", "surname", "type" })
@Entity
public ...
1
vote
1answer
93 views
Can I use xinclude and entities in the same XML file?
I'm working in DocBook 5.0, creating a writing/editing/production environment. I validate my XML against the RNG schema version of DB5.
To make my environment easier to use, I like to break up my ...
0
votes
0answers
96 views
load xml to an entity framework
I have some design issues here. I have a couple of XML files. We will have a database later on with similar info as the xml but no database yet. However, I need to parse the xml files and pass the ...
1
vote
3answers
1k views
The entity name must immediately follow the " in the entity reference
Every time I open one of my xpages I get following popup/dialog (see image). I have looked in the source pane trying to find an error but can't find it and the problem is not listed in the source pane ...
0
votes
0answers
207 views
XSLT 1.0, need to globally replace apostrophes in XML output with ' entity
I'm transforming XML and have to map some descriptive, plain English metadata to an attribute value, like so:
<Element Value="He's going to have to"></Element>
As a part of the initial ...
0
votes
1answer
432 views
XML parser error: entity not defined in all browsers
I wrote a simple XML file and a DTD file including an entity, but when I want to check it in my browsers I get the message:
XML parser error: entity not defined.
Address: ...
0
votes
1answer
484 views
Pointing to XML entity declaration with relative path
I want to use XML entites in my Hibernate mapping.
Here's my file structure:
/types/convertible-car.hbm.xml
/xml-entites/registration.xml
The mapping file convertible-car.hbm.xml looks like this:
...
0
votes
1answer
331 views
How to override XmlTextReader character entity expansion?
Using the .Net framework, I need to read XML entity text as raw string values (character entities not expanded) for use in a comparison / merge function. As far as I can tell, there's no way of ...
0
votes
1answer
685 views
Using XMLUnit(Java) to compare XML strings containing entities
JDK 1.7.0
XMLUnit 1.3
When comparing this control XML string:
String controlXml = "" +
"<client>" +
" ...
3
votes
2answers
103 views
stop xml entity from producing square
i have the following in my xml file and it gives me a square ⃠
<?xml version="1.0" encoding="utf-8"?>
...
<Button android:text="⃠" android:layout_width="wrap_content" ...
1
vote
2answers
863 views
XDocument.Save() removes my 
 entities
I wrote a tool to repair some XML files (i.e., insert some attributes/values that were missing) using C# and Linq-to-XML. The tool loads an existing XML file into an XDocument object. Then, it parses ...
0
votes
0answers
228 views
Entity 'rsquo' not defined on google scheme sitemap
i am trying to create a google scheme sitemap to my site,
and there are some content with special chars like ' and ".
when i try to fetch the data from the database i get the following error:
Entity ...
3
votes
1answer
652 views
XML Entity in setAttribute/addAttribute
Alright, perhaps I'm missing something simple. I've been searching for quite some time and have had no luck. I need to insert an entity into an XML attribute. In order to do this I need to be able to ...
0
votes
1answer
44 views
Can xml markup be included in an internal entity declaration?
I want to define an entity containing XML markup similar to the following in my XML document.
<testElm testAtt="attValue">Only a test.</testElm>
Is it possible to do this with an ...
0
votes
2answers
155 views
XML - removing illegal chars from an xml document
I have an XML document that contains special characters like '%', Carriage return, line feed, &, <, >, ', ". I have tried to encode the entire xml document but that fails to load when using ...
1
vote
2answers
419 views
preserving character entities during xslt
I've been using, for example, the degree character entity ° in my source xml and it was always output as ° after translation and worked fine. However, I've recently had to switch ...
1
vote
1answer
2k views
How to use external entities in XML?
I am trying to understand how to use external entities, but I am missing something.
I have a first file, test_entity.xml
<?xml version="1.0" encoding="UTF-8" ?>
<test>
...
2
votes
4answers
523 views
How do i retrieve an XML entity value in C#?
I want to be able to display a list of entity names and values in a C#/.NET 4.0 application.
I am able to retrieve the entity names easily enough using XmlDocument.DocumentType.Entities, but is there ...
0
votes
1answer
48 views
match xml entities in reqex using xml::dom
I have a script that loops through all text nodes in an xml file (using xml::dom) and then mathces them against a reqex. I am failing to make a match for text such as:
§ 1-101
...
0
votes
2answers
1k views
Disable XML Entity resolving in JDOM / DOM
I am writing a Java application for the postprocessing of XML files.
These xml files come from an RDF-Export of a Semantic Mediawiki, so they have rdf/xml syntax.
My problem is the following:
When I ...
1
vote
1answer
1k views
fo: entity referenced but not declared
I am getting the error "entity 0slash was referenced but not declared" whenever I try to convert .fo file to .pdf with apache fop 1.0
I found out you can declare entities in DTD, however, my .fo file ...
1
vote
2answers
1k views
Entity declaration in php generated xml document ( — etc)
This is driving me nuts, lots of similar problems out there on the web, but I can't find the right solution.
I am creating an xml document in php to be sent as the response to an ajax request. The ...
1
vote
2answers
344 views
nest xml in an xml doctype entity
<!DOCTYPE cruisecontrol [
<!ENTITY triggers "<triggers><intervalTrigger seconds="30" /></triggers>">
<!ENTITY rootdir "J:\pathyness\" >
]>
I'm trying to ...
3
votes
1answer
425 views
JSF 2 - How To Preserve XML Entity Definitions in HTML output?
I'm working on a JSF 2 web application. If I define a facelet that begins as follows:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN"
...
1
vote
1answer
2k views
External entity reference in external dtd (xml)
i have little bit of problem while working with External entity reference in External DTD
for Example
[name.xml]
<?xml version="1.0" ?>
<!DOCTYPE simple SYSTEM "simple.dtd">
...
0
votes
1answer
849 views
xmlstarlet parser error : Entity '*' not defined
While using xmlstarlet on web pages, I most of time faced entity reference error.
which render it useless for extracting from web pages.
As html page are not well formed XML (is there some option to ...
3
votes
1answer
2k views
Java XML processing entity problem?
I get the following error when I try to run my java program(it's supposed to read an xml file and print out some of the content).
From what I understand there is an unreferenced entity which is not ...
6
votes
4answers
6k views
XML parser error: entity not defined
I have searched stackoverflow on this problem and did find a few topics, but I feel like there isn't really a solid answer for me on this.
I have a form that users submit and the field's value is ...
4
votes
1answer
628 views
Prevent XmlTextReader from expanding entities
I am trying to read a XML document without expanding the entities, do some manipulations to it, and re-save it with the unexpanded entities as they were initially.
When using the XDocument directly, ...
2
votes
3answers
260 views
Python: parsing XML document while preserving entities
I wanted to ask what known existing Python 2.x libraries there are for parsing an XML document with built-in DTD without automatically expanding the entities. (File in question for those curious: ...
0
votes
1answer
247 views
XML entity references
I need to represent special characters like superscripts, copyright symbols etc in XML. What's the best way to do this?
I'm confused as XML defines 5 entity references for "<" , ">" etc. I ...
2
votes
1answer
652 views
Can ENTITY declarations be nested in referenced XML files?
I'm working on a rather large DocBook XML document. The main book has the chapters but includes all the subsections by reference using entities. Something like this:
main.book.xml:
<!DOCTYPE ...
0
votes
2answers
535 views
getting expat to use .dtd for entity replacement in python
I'm trying to read in an xml file which looks like this
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE dblp SYSTEM "dblp.dtd">
<dblp>
<incollection>
...
0
votes
1answer
562 views
How do I specify a multi-column id in orm xml for a JPA entity?
I'm trying to create a JPA Entity backed by a view which does not have an id. The rows are uniquely defined by two columns, product id and node id. How can I specify that the id for the entity is a ...
0
votes
2answers
133 views
XML allows for external entities; what about XHTML?
This question about web page 'inclusion' triggered my curiosity. The XML allows you to specify a reference to an 'external' portion. Can you do the same in XHTML, then?
XML example:
<!ENTITY ...
0
votes
1answer
118 views
Is it possible to include a DOCTYPE declaration in an XML file and have the parser remove it while working?
Or perhaps have the parser just ignore the DOCTYPE tag in some fashion? I have XML files being used as "!ENTITY"s that also themselves need to have "!ENTITY"s and I have included the nested ones in ...
1
vote
1answer
204 views
How do I use a custom xml entity in a javascript file
I have an 'overlay.dtd' file with a line like <!ENTITY myentity "myvalue">.
At the top of my xul file I have <!DOCTYPE overlay SYSTEM 'chrome://myaddon/locale/overlay.dtd'>.
In my xul ...
3
votes
2answers
2k views
org.xml.sax.SAXParseException: The entity “ndash” was referenced, but not declared
I'm parsing the the following...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE tox:message SYSTEM "http://tox.sf.net/tox/dtd/tox.dtd">
<tox:message ...
0
votes
2answers
646 views
How to detect ndash entity embedded in a textarea using Javascript?
I have a textarea within an HTML page into which my users paste content.
There is often an "–" (–)(\x2013) embedded in that content. I need to detect and replace it and store it in a ...
0
votes
2answers
627 views
How to make second test passing in these C# Xml unit tests? What do I miss in initialization of XmlReaderSettings?
Issue description:
I need to fix an issue with resolving of standard HTML entitities.
I've implemented HtmlEntityReader - implementation of XmlReader which has a code to resolve entities
Public ...

