Meanwhile, I spot this in a classpath in the class loader: file:/C:/Documents%2520and%2520Settings/benson.BASIS/.m2/repository/org/ apache/neethi/neethi/2.0.2/neethi-2.0.2.jar
> -----Original Message----- > From: Benson Margulies [mailto:[EMAIL PROTECTED] > Sent: Monday, November 12, 2007 10:54 AM > To: [email protected] > Subject: RE: Test failure in CodeGenBugTest (and others), looking for > assistance > > I found the generated copy, and it looks correct. So, the immediate > problem would seem to be that the class loader in the test is coming up > with the wrong copy. > > @javax.jws.WebService(name = "Greeter", serviceName = "SOAPService", > portName = "SoapPort", > targetNamespace = > "http://apache.org/hello_world_soap_http", > wsdlLocation = > "file:/C:/x/cxf2/trunk/tools/wsdlto/test/target/test-classes/wsdl2java_w > sdl/bug305773/hello_world.wsdl" , > endpointInterface = > "org.apache.hello_world_soap_http.Greeter") > > public class GreeterImpl implements Greeter { > > > -----Original Message----- > > From: Benson Margulies [mailto:[EMAIL PROTECTED] > > Sent: Monday, November 12, 2007 10:52 AM > > To: [email protected] > > Subject: Test failure in CodeGenBugTest (and others), looking for > > assistance > > > > I just did an mvn clean for the first time in a long time. > testBug305773 > > in CodeGenBugTest fails. I can't see how it can succeed. > > > > Here's the assert that fails. > > > > Class clz = > > classLoader.loadClass("org.apache.hello_world_soap_http.GreeterImpl"); > > > > WebService webServiceAnn = > > AnnotationUtil.getPrivClassAnnotation(clz, WebService.class); > > assertEquals("Greeter", webServiceAnn.name()); > > > > Here's the current, checked in, contents of GreeterImpl: > > > > @WebService(serviceName = "SOAPService", > > portName = "SoapPort", > > endpointInterface = > > "org.apache.hello_world_soap_http.Greeter", > > targetNamespace = > "http://apache.org/hello_world_soap_http", > > wsdlLocation = "testutils/hello_world.wsdl") > > public class GreeterImpl implements Greeter > > > > Is this test generating a different version of that class?
