Hi all. I want use spring for create unmarshaller. My bean definitions:
<bean id="springXmlContext" class="org.castor.spring.xml.InternalContextAdapter"/> <bean id="unmarshaller" class="org.castor.spring.xml.CastorUnmarshallerFactoryBean"> <property name="springXmlContext"> <ref local="springXmlContext"/> </property> </bean> All works ok, but I don't understand how I can add mappings to InternalContext using spring. -- With best regards, Pokidov N. Dmitriy

