<c:set var="Customer.name" value = "${cust_data.rows[0].CUST_NAME}" scope="session"/>
When you are setting JavaBean properties, you need to use the alternate approach for <c:set>. What you want is...
<c:set target="${Customer}" property="name" value="${foobar}" />
Check the spec or JSTL in Action if you want more examples or details on how this works.
-- Serge Knystautas President Lokitech >> software . strategy . design >> http://www.lokitech.com/ p. 1.301.656.5501 e. [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
