Hi All, While loading all the topics(String datatype) from the database to list box in xhtml. I am getting following error.What i am thinking is topics contains special charcters .
org.orbeon.saxon.trans.DynamicError: Illegal HTML character: decimal 133 at org.orbeon.saxon.event.HTMLEmitter.writeEscape(HTMLEmitter.java:328)at org.orbeon.saxon.event.XMLEmitter.characters(XMLEmitter.java:550) at org.orbeon.saxon.event.HTMLEmitter.characters(HTMLEmitter.java:414) at org.orbeon.saxon.event.HTMLIndenter.characters(HTMLIndenter.java:178) at org.orbeon.saxon.event.ProxyReceiver.characters(ProxyReceiver.java:178) at org.orbeon.saxon.event.ProxyReceiver.characters(ProxyReceiver.java:178) at org.orbeon.saxon.event.ReceivingContentHandler.flush(ReceivingContentHandler.java:425) Can you please say me what the error actually means?
-- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Laxmi,
It is an encoding problem. Sometimes it is tricky to find the source. Saxon has code raising this errors for characters with codes between 127 and 159: http://github.com/orbeon/saxon/blob/master/org/orbeon/saxon/event/HTMLEmitter.java Now I am not sure why the source XML contains such a code. Maybe it simply comes from you database. It could be that the character should not be there in the first place, or that somebody, somewhere is using an incorrect encoding. -Erik On Tue, Sep 15, 2009 at 7:18 AM, Laxmi Narayana <[hidden email]> wrote: > Hi All, > While loading all the topics(String datatype) from the database to list box > in xhtml. > I am getting following error.What i am thinking is topics contains special > charcters . > org.orbeon.saxon.trans.DynamicError: Illegal HTML character: decimal 133 > at org.orbeon.saxon.event.HTMLEmitter.writeEscape(HTMLEmitter.java:328) > at org.orbeon.saxon.event.XMLEmitter.characters(XMLEmitter.java:550) > at org.orbeon.saxon.event.HTMLEmitter.characters(HTMLEmitter.java:414) > at org.orbeon.saxon.event.HTMLIndenter.characters(HTMLIndenter.java:178) > at org.orbeon.saxon.event.ProxyReceiver.characters(ProxyReceiver.java:178) > at org.orbeon.saxon.event.ProxyReceiver.characters(ProxyReceiver.java:178) > at > org.orbeon.saxon.event.ReceivingContentHandler.flush(ReceivingContentHandler.java:425) > Can you please say me what the error actually means? > > > -- > You receive this message as a subscriber of the [hidden email] mailing > list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Free forum by Nabble | Edit this page |