Assuming your anchor tag is not part of the dtd of the xml document - then I guess
your parser is rejecting it since it doesn't recognise it as one of the defined
tags.
If that's the case then you need to escape your '<' and '>' characters.
My guess is that if you replace < with &lt; and > with &gt; then you should be ok.
BTW What's this got to do with JSP?

Jyoti Bongarala wrote:

> Hi! Listees,
>
> I am having a problem with the anchor tag  in the xml
> file. I am pasting a piece of code here:
>
> <article>
> <title>Russian Fishing Vessel Detained in
> Norway.</title>
> <date>03/19/2000</date>
> <filename>0000-0300-KEYWORD.Missing.html</filename>
> <url><A HREF="0000-0300-KEYWORD.Missing.html">Russian
> Fishing Vessel Detained in Norway.</A></url>
> </article>
>
> What happens is when I use this xml with the XML
> Transform parser (which checks the xml file against
> its dtd and then gives a html file)the anchor tag
> doesn't show up in the html .
>
> Can someone tell me how to work around this problem.
> Any help will be greatly appreciated.
>
> Thanks again,
> Jyoti
>
> __________________________________________________
> Do You Yahoo!?
> Talk to your friends online with Yahoo! Messenger.
> http://im.yahoo.com
>
> ===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

--
Tim Fox (��o)

Hyperlink plc
http://hyperlink.com

email: [EMAIL PROTECTED]
phone: +44 (0) 207 240 8121

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to