I have a really simple web service which works fine in jetty 6:
java -Djetty.class.path=/path/to/webservices-rt.jar -jar start.jar
but the same commandline for jetty 7 fails with a ClassNotFoundException
for WSServlet
. I also tried adding the jar to lib/ext
but that didn't work either.
I've tried an example "hello world" app (also requiring webservices-rt.jar) and it exhibits the same behaviour.
There doesn't seem to be much documentation on v7 yet, has anyone else come across this and found a solution?