Hello
I am trying to look up a jndi resource (a jms connection factory) using the jee:jndi-look-up tags. Here is how it looks like

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.Pr opertyPlaceholderConfigurer">
<property name="location">
<value>classpath:jndi.properties</value>
</property>
</bean>


<!-- define all jndi properties -->
<utilroperties id="jndiProps" location="classpath:jndi.properties"/>

<!-- initialize the jms boiler plate code here -->
<jee:jndi-lookup id="internalJmsQueueConnectionFactory1" jndi-name="${qmanager.1.name}"
environment-ref="jndiProps" lookup-on-startup="true"/>.

The weird thing is that at the point of loading the application context , I get an error sying "Attribute 'environment-ref' is not allowed to appear in element 'jee:jndi-lookup'. ".

I am really surprised that this is happening. I am using spring-2.0.5 and the corresponding versions.

I saw the on spring2.0.3 release notes that environment-ref is supported on all jee:* tags. Can some one help me figure this out.
thanks
-Satish