i\'m using Spring-WS and have the following spring-ws-servlet.xml file. The injection of defaultURI and marshaller doesn\'t work because when i get to the method in the client o
Are you new'ing the SpringWSClient instance in your code?
new
SpringWSClient
Also, for the streetDao, you shouldn't need to use SpringUtils.getBean. Instead, it should be a field annotated with @Autowired (or @Resource).
SpringUtils.getBean
@Autowired
@Resource