}
while (it.hasNext()) {
Object obj = it.next();
if (obj instanceof SOAP12Address) {
SOAP12Address soapAddress = (SOAP12Address)obj;
assertNotNull(soapAddress.getLocationURI());
assertEquals("http://localhost:9000/SOAPService/SoapPort", soapAddress.getLocationURI());
break;
}
}
} catch (ToolException e) {
fail("Exception Encountered when parsing wsdl, error: " + e.getMessage());