Create java client from WSDL for Google App engine
This post will explain how to consume SOAP based web services on Google App Engine platform. Keep your wsdl files in resources/wsdl folder Make these files entry in appengine-web.xml like <static-files> <include path="/**.wsdl"/> <include path="/**.WSDL"/> </static-files> Now update POM file for wsdl to java plugin <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-codegen-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>generate-sources</id> <phase>generate-sources</phase> ...