I have a problem accessing a REST service with the RestTemplate. I've already managed to user the MarshallingConverter to access one other service, and everything worked fine. I have copied this functionality and generated Model classes from the XSD schema I've received. However I get an exception that no suitable converter was found. Here is my configuration (I am using Spring 3.0.6 in connection with Vaadin if that matters):
<bean id="marshallingConverter" class="org.springframework.http.converter.xml.MarshallingHttpMessageConverter">
<property name="marshaller" ref="jaxbMarshaller" />
<property name="unmarshaller" ref="jaxbMarshaller" />
</bean>
<bean id="jaxbMarshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
<property name="classesToBeBound">
<list>
... here are my model classes ...
</list>
</property>
</bean>
<bean id="restTemplate" class="org.springframework.web.client.RestTemplate">
<property name="messageConverters">
<list>
<ref bean="marshallingConverter" />
</list>
</property>
</bean>
The RestTemplate is autowired in my service client class implementation. What am I missing here? I have checked the response and the content type is set to application/xml and the model classes were autogenerated, so the configuration should be right. Thanks for any help.