Hello:
I have set of Spring objects in project that are working well and tested. I
would like to expose these as services. How would I make reference to these
objects?
For example, if I have a service:
<jaxws:endpoint id="organizationDataService"
implementor="#organizationDataServiceImpl"
wsdlLocation="WEB-INF/wsdl/OrganizationDataService.wsdl"
address="/OrganizationDataService" >
</jaxws:endpoint>
but in my POJO project, I have a the following
<bean id="orgManager"
class="org.idm.srvc.org.service.OrganizationDataServiceImpl" >
<property name="orgDao" ref="orgDAO" />
<property name="orgAttrDao" ref="orgAttrDAO" />
</bean>
Normally in spring I can refer to another object using "ref". How would it
work here?
thanks