> 1. If we generate service implementation objects using wsdl2java, is > it possible to avoid it referring back to the wsdl file in the > annotations?
One note which may be offtopic for this thread. CXF has a ServiceContractResolver interface. Given a service QName a specific implementation can return a URI to a (wsdl) contract which contains a definition for this service. The runtime will consult the ServiceContractResolverRegistry when searching for a WSDL document. Thus, if no Spring configuration (jaxws:client or jaxws:endpoint) is used where wsdlLocations can be setUp, the possible alternative is to provide a custom ServiceContractResolver implementation which will fetch a WSDL URI from whatever location/repository is necessary... Cheers, Sergey ---------------------------- IONA Technologies PLC (registered in Ireland) Registered Number: 171387 Registered Address: The IONA Building, Shelbourne Road, Dublin 4, Ireland
