hi guys

I have two projects
Dynamic web project called 'productwebproject' and java project called 'productcoreproject'



In my productwebproject i have WEB-INF\app\applicaiton-config.xml file

This is my applicaiton-config.xml file

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:security="http://www.springframework.org/schema/security"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schem...-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">



<bean id="productervice" class="com.buisnessservice.ProductService">
<property name="productDao" ref="dao"></property>
</bean>

<bean id="dao" class="core.dao.ProductDao"> ***ProductDao is in productcoreproject
</bean>

<import resource="classpath:/core/dao/ProductDao"/>

....and so on

<import resource="classpath:/core/dao/ProductDao"/> --this line fails it says
/core/dao/ProductDao cannot be opened because it does not exist


I have productcoreproject on the buildpath of productwebproject but i guess that is not enough

Any idea what other settings i have to make? I am using RAD Ide.

thanks