String portName = "port1";
// We don't use the setup method since we do not want the parameters set on this
// service
// setupAxisService(svc1, svc1QN, portName);
svc1.setName(generateAxisServiceName(svc1QN, portName));
axisCfg.addService(svc1);
String extraName = ActivateUtils.getAxisServiceExternalizeExtraName(svc1) + "_NoMatch";
AxisService foundService = ActivateUtils.findService(axisCfg, AxisService.class.getName(),
generateAxisServiceName(svc1QN, portName), extraName);
assertSame("Should have found matching service without matching extraname", svc1, foundService);