URL wsdlURL = new URL("http://" + getServerHost() + ":8080/jbws1702/SampleWSWithDocument_Wrapped?wsdl");
QName serviceName = new QName("http://jbws1702.jaxws.ws.test.jboss.org/", "SampleWSWithDocument_WrappedService");
Service service = Service.create(wsdlURL, serviceName);
SampleWSWrappedSEI port = service.getPort(SampleWSWrappedSEI.class);
ClassB b = port.getClassCAsClassB();
assertTrue("Should be an instance of ClassC, but was " + b, (b instanceof ClassC));
}