URI jaxrpcmappingURI = new URI("META-INF/wsdl/interop-jaxrpcmapping.xml");
QName serviceQName = new QName("http://tempuri.org/4s4c/1/3/wsdl/def/interopLab", "interopLab");
AxisBuilder builder = new AxisBuilder();
Map portComponentRefMap = null;
List handlers = null;
DeserializingReference reference = (DeserializingReference) builder.createService(InteropLab.class, wsdlURI, jaxrpcmappingURI, serviceQName, portComponentRefMap, handlers, gerServiceRefType, context, module, cl);
ClassLoader contextCl = context.getClassLoader(null);
reference.setClassLoader(contextCl);
Object proxy = reference.getContent();
assertNotNull(proxy);
assertTrue(proxy instanceof InteropLab);
InteropLab interopLab = ((InteropLab) proxy);
InteropTestPortType interopTestPort = interopLab.getinteropTestPort();