QName serviceQName = new QName("http://www.Monson-Haefel.com/jwsbook/BookQuote", "BookQuoteService");
AxisBuilder builder = new AxisBuilder();
Object reference = builder.createService(BookQuoteService.class, schemaInfoBuilder, mapping, serviceQName, SOAPConstants.SOAP11_CONSTANTS, handlerInfos, gerServiceRefType, context, module, isolatedCl);
assertNotNull(reference);
assertTrue(reference instanceof AxisServiceReference);
AxisServiceReference claReference = (AxisServiceReference) reference;
claReference.setClassLoader(isolatedCl);
Object proxy = claReference.getContent();
assertTrue(proxy instanceof BookQuoteService);
BookQuote bookQuote = ((BookQuoteService) proxy).getBookQuotePort();
assertNotNull(bookQuote);
}