I am playing around with spring-boot and i run into a problem. To create RESTful webservices is quite easy. But i am not able to run an soap service with spring-boot.
Doesn't Spring WS need a MessageDispatcherServlet? So you would need to replace the default DispatcherServlet with one of those, e.g.
MessageDispatcherServlet
DispatcherServlet
@Bean public MessageDispatcherServlet dispatcherServlet() { return new MessageDispatcherServlet(); }