Hi all,

I need some advice here.

I have developed my application using 2.4 specifications but the deployment
server is only up to 2.3 specifications.
So i have to make some changes in web.xml as the following.

<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd";>

<webapp>
...
</webapp>

When i run the web application,

<bean:define id="biz_link" type="String" name="Biz_Bean"
property="business_id"/>
<html:link action="/viewBiz/ViewBusinessDetail?business_id=${biz_link}">

The code was rendered in the html as
http://...../viewBiz/ViewBusinessDetail?business_id=${biz_link}
It works fine in 2.4 specifications.

Is there something that i should declare in the web.xml(2.3) ?
Appreciate any help

Reply via email to