Hi, I would like to automatic testing my web services out of the box, that is integrated in an application server I can start in a JUnit test case.
My idea is using Jetty to launch the application I'm writing and then call the webservice with a dynamic client configured with Spring (extending AbstractDependencyInjectionSpringContextTests). BTW I don't like this approach (launching a web server cannot be permitted in some environment and also the port must not be used), moreover I also need to think how to create a mock data provider. There is a better way to do it? Thanks, Vicio.
