views:

122

answers:

1

Is there any way to validate an XML file with its DTD, using a JSP in Eclipse? If so, how can we do it?

+1  A: 

Did you try:

  1. Specify the DTD at the top of the jsp, as if it is a regular XML document;
  2. right-click the jsp > Validate.
Bozho