EndpointDescription endpointDesc = serviceDesc.getEndpointDescriptions_AsCollection().iterator().next();
assertNotNull(endpointDesc);
AxisService axisSvc = endpointDesc.getAxisService();
assertNotNull(axisSvc);
EndpointInterfaceDescription interfaceDesc = endpointDesc.getEndpointInterfaceDescription();
assertNotNull(interfaceDesc);
// There should be a single OpDesc with a single AxisOperation based on the SEI below
// But it should not be the special named operation and the special dispatcher should not
// return null for operation dispatch
OperationDescription opDescs[] = interfaceDesc.getOperations();
assertNotNull(opDescs);
assertEquals(1, opDescs.length);
AxisOperation axisOperation = opDescs[0].getAxisOperation();
assertNotNull(axisOperation);
if (EndpointInterfaceDescription.JAXWS_NOWSDL_PROVIDER_OPERATION_NAME.equals(axisOperation.getName().getLocalPart())) {