I am at a situation where I need to be able to create and expose a webservice at run time. (i.e. no "javac"-compilation step).
Is there a JVM-based scripting language that has good support for JAX-WS so I can write a central engine in Java, and then just let the scripting language create the snippets containing the web service methods (with either @WebService or @WebMethod annotations) which can then be passed to
If at all possible, please provide an example of how to do it correctly.
Any suggestions?