How can I create client for annotated webservice (without interface)? There is an example in docs (http://xfire.codehaus.org/Client+API):
Service serviceModel = new AnnotationServiceFactory().create(YourService.class); YourService client = (YourService) new XFireProxyFactory().create(serviceModel, "http://your/remote/url"); But it doesn't work - AnnotationServiceFactory needs concrete class, but XFireProxyFactory needs interface... --------------------------------------------------------------------- To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email
