On Thu, Sep 11, 2008 at 5:48 PM, Mike Edwards < [EMAIL PROTECTED]> wrote:
> Ram, > > Good stuff. > > I have made the spring-sca.xsd available publicly on the OSOA site here: > > http://www.osoa.org/xmlns/sca/1.0/spring-sca.xsd > > Thus, using a location statement that points to this should enable regular > XSD handling to work correctly. > Thanks Mike. The schema location changes are applied as part of TUSCANY-2573. Patches are now available for TUSCANY-2596. This Patch contains the fix to support the following configuration as shown below. <bean id="beanRefFactory" class="org.springframework. context.support.ClassPathXmlApplicationContext"> <constructor-arg><list> <value>Organization-spring-context.xml</value> </list></constructor-arg> </bean> and <property name="companyName"> <ref bean="employee"/> </property> For Spring Constructor Injection configuration as shown below. <constructor-arg> <ref bean="orderDAO"> </constructor-arg> not sure if we should support this. I have opened a Spec's JIRA to confirm the same (http://www.osoa.org/jira/browse/JAVA-63) -- Thanks & Regards, Ramkumar Ramalingam
