[
Lists Home |
Date Index |
Thread Index
]
- To: Martin Probst <martin@x-hive.com>, xml-dev@lists.xml.org
- Subject: Re: [xml-dev] Default Entity when compose xml file
- From: jj long <longjingjun@yahoo.com.cn>
- Date: Fri, 28 Oct 2005 03:08:27 -0700 (PDT)
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com.cn; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=1aFh+/32Uk+XkhEEMR+qRqoXmuwXPdCyPbu8qWEJ5/1pa4c+TtK824+uio4GoCbOte5zWIoJclbLVmn5Um8nBuWNBU2d+ZueBy0S9YXuK58jIyRYZuh5V4ktO+vYR07PX96P1Um3f5CXGvQ3v3SD7CKaqDX2UlgYLpm7vy2/fNk= ;
- In-reply-to: <1130424259.8375.6.camel@localhost.localdomain>
Martin,
I followed your advice. It works well. :-)
It seems this is a general problem when compose xml
file. Is there any exist function - for example like
encode - to do this in XML lib? I made this replace
function my own currently.
Cheers,
Long
--- Martin Probst <martin@x-hive.com> wrote:
> Hi,
>
> > One solution I am thinking about is:
> > Replace <,>,& and other characters that can not
> used
> > directly in xml data with <, >,& and etc
> in
> > the data before I compose the xml file.
> >
> > An other problem is risen here. Are these entities
> > been defined as default entity in the parser
> (Xerces)?
> > I.e.: can I do not define these entities in the
> xml
> > file?
>
> The entities for the XML meta-characters (& >
> < " ')
> are part of the XML standard itself and always
> available in XML
> documents/parsers. So no need to worry, you can just
> replace occurrences
> of the characters with the appropriate entity.
>
> Make sure you replace the '&' character first, as
> you will run into ugly
> double escaping problems otherwise. You also only
> need to escape & and <
> in element content, the others are optional.
>
> Martin
>
>
>
-----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org
> <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
>
> The list archives are at
> http://lists.xml.org/archives/xml-dev/
>
> To subscribe or unsubscribe from this list use the
> subscription
> manager:
> <http://www.oasis-open.org/mlmanage/index.php>
>
>
__________________________________
Start your day with Yahoo! - Make it your home page!
http://www.yahoo.com/r/hs
|