You need to create your own DTD Assertion and extend the functionality to create XHTML Assertion. you need to point to the following xhtml1-strict.dtd then xhtml will work as standard way. I have never done it but I am sure it will work.
http://www.w3.org/TR/2002/REC-xhtml1-20020801/ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> A.1.1. XHTML-1.0-Strict The file DTD/xhtml1-strict.dtd is a normative part of this specification. The annotated contents of this file are available in this separate section for completeness. A.1.2. XHTML-1.0-Transitional The file DTD/xhtml1-transitional.dtd is a normative part of this specification. The annotated contents of this file are available in this separate section for completeness. A.1.3. XHTML-1.0-Frameset The file DTD/xhtml1-frameset.dtd is a normative part of this specification. The annotated contents of this file are available in this separate section for completeness. Dave Peter Lin <[EMAIL PROTECTED]> wrote: I'm not aware of a XHTML validation library. Many of the libraries out there like HtmlParser, JTidy are built to fix bad html and make it XHTML compliant. I suppose one option would be to strip out the javascript and then run it through DTD validation. not sure how that would work, but it's an idea. peter On 4/22/05, COGOLUEGNES Arnaud wrote: > thanks for quick answers. > > I downloaded 2.0.3 and tried the XML assertion. If I may give some critics: > - it's an assertion, so it must be plugged to each request. I was more > thinking about a listener, as it can be easily added/removed from the test > plan (JMeter's first goal is load testing, so tests could be altered by the > HTML validation) > - it's using JTidy. I don't know much about this parser but it didn't > detect none closed tag and looks pretty old. Tell me if I'm wrong. > > I began working on a listener with DTD validation (with JDK default XML > libraries, that is Xerces I think). It's working quite well (thanks to > JMeter extensibility ;-) ) but the DTD validation doesn't really suit to > HTML validation (because of JavaScript for example). Does anyone know a good > Java (X)HTML validator? > > Thanks. > > Arno > > PS: tell me if this thread should continue on the developper list. > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

