= new org.apache.type_test.doc.SOAPService(wsdlLocation,
serviceName);
docClient = docService.getPort(portName, org.apache.type_test.doc.TypeTestPortType.class);
assertNotNull("Could not create docClient", docClient);
} else {
SOAPService rpcService = new SOAPService(wsdlLocation, serviceName);
rpcClient = rpcService.getPort(portName, org.apache.type_test.rpc.TypeTestPortType.class);
assertNotNull("Could not create rpcClient", rpcClient);
}
}
}