Skip to content

Instantly share code, notes, and snippets.

@zeroows
Created May 18, 2014 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeroows/8dc1f823c01bbeb48895 to your computer and use it in GitHub Desktop.
Save zeroows/8dc1f823c01bbeb48895 to your computer and use it in GitHub Desktop.
package com.ttdev;
import org.apache.cxf.tools.wsdlto.WSDLToJava;
public class ClientCodeGenerator {
public static void main(String[] args) {
WSDLToJava.main(new String[] {
"-client",
"-d", "src/test/java",
"-p", "http://ttdev.com/cs=com.ttdev.cs.client",
"src/main/resources/ComputeService.wsdl" });
System.out.println("Done!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment