Skip to content

Instantly share code, notes, and snippets.

@hshemer
Created March 18, 2011 17:52
Show Gist options
  • Save hshemer/876527 to your computer and use it in GitHub Desktop.
Save hshemer/876527 to your computer and use it in GitHub Desktop.
stub
//trying to create a stub
SugarsoapBindingStub stub = null;
try {
stub = new SugarsoapBindingStub(url, new Service());
} catch (AxisFault e) {
System.out.println("stub creation failed. Message: "+e.getMessage());
e.printStackTrace();
}
System.out.println("stub created successfully!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment