test.wsdl.extension.PlanWSSoapStub binding;
try {
binding = (test.wsdl.extension.PlanWSSoapStub)
new test.wsdl.extension.PlanWSLocator().getPlanWSSoap();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertNotNull("binding is null", binding);
// Time out after a minute
binding.setTimeout(60000);
// Test operation
test.wsdl.extension.Plan value = null;
value = binding.getPlan();
// TBD - validate results
assertEquals(value.getDisposition().getCode(),"CODE #1");
assertEquals(value.getDisposition().getDescription(),"CODE #1 Description");