[EMAIL PROTECTED] wrote:
> Hi,
> 
> I tried to give the system property in three ways
> 
> a) set org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false
That sets an environment variable, not a system property.

> b) ant -Dorg.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false
Ant isn't Java - that won't work.

> c) in the build.xml <property
> name="org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING"
> value="false"/>
That sets a build property, not a system property.

The simplest way to do what you are trying to do is set ANT_OPTS. ie:
set ANT_OPTS=-Dorg.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false

Mark



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to