Has anyone managed to develop a top down web service (WSDL first) and deployed to Google App Engine. The example given at https://developers.google.com/appengine/articles/soap is a bottom up approach.
I've used Apache CXF to generate Java web service stubs from a WSDL, bundled in the app engine libraries and xml config files, but no joy. I see an java.lang.NoClassDefFoundError: javax/management/JMException in the App Engine logs when initialising the CXFServlet, which is pretty nasty. ClassNotFoundException I could maybe do something about, but NoClassDefFoundError is indicative of a class that was available at compile time that is not available at runtime. JMException is a JDK class, so I would expect it to be available.
I'm not so bothered in fixing the Exception, I'm more interested in whether anyone has a proof of concept for a top down web service in Java on GAE