I use Enunciate (http://enunciate.codehaus.org/) for our web-service layer and I just want to do something very simple but do not find any documentation.
I want to deploy some images and other static resources and to be accessible from e.g http://localhost:8080/myapp/images/img01.png
I tried to create a folder images
under src/main/resources
but it is not deployed like I want (all files/folder inside there goes to myapp/WEB-INF/classes, which as expected).
Someone can point me where are the static resources with the enunciate project?
I do not have the web.xml as it is automatically generated by the enunciate framework.