> Line is
> <jsp:plugin type="applet" jreversion="1.4" code="dclock.LedClock.class"
> archive="dclock.jar" height="36" width="166">
>  <jsp:params>
>   <jsp:param name="name" value="<%=
> ((servlet24.PosteBean)context.getPoste("******")).getCodePoste()+"_appl
> etc"%
> >" />

The spec says you can't do this:
<xxx attribute="foo"bar"too" />
You have to do:
<xxx attribute='foo"bar"too' />
or
<xxx attribute="foo\"bar\"too" />

Alternatively you can disable this check with a system property. See 
http://tomcat.apache.org/tomcat-5.5-doc/config/systemprops.html

Be careful if you do disable this check. Strange things can go wrong with
the JSP parsing.

Mark



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to