-
@Documented @Retention(value=RUNTIME) @Target(value=TYPE) public @interface WebServiceRefs
TheWebServiceRefs
annotation allows multiple web service references to be declared at the class level.It can be used to inject both service and proxy instances. These injected references are not thread safe. If the references are accessed by multiple threads, usual synchronization techinques can be used to support multiple threads.
There is no way to associate web service features with the injected instances. If an instance needs to be configured with web service features, use @WebServiceRef to inject the resource along with its features.
Example: The
StockQuoteProvider
proxy instance, and theStockQuoteService
service instance are injected using @WebServiceRefs.@WebServiceRefs({@WebServiceRef(name="service/stockquoteservice", value=StockQuoteService.class), @WebServiceRef(name="service/stockquoteprovider", type=StockQuoteProvider.class, value=StockQuoteService.class}) public class MyClient { void init() { Context ic = new InitialContext(); StockQuoteService service = (StockQuoteService) ic.lookup("java:comp/env/service/stockquoteservice"); StockQuoteProvider port = (StockQuoteProvider) ic.lookup("java:comp/env/service/stockquoteprovider"); ... } ... }
- Since:
- 2.0
- See Also:
WebServiceRef
-
-
Required Element Summary
Required Elements Modifier and Type Required Element and Description WebServiceRef[]
value
Array used for multiple web service reference declarations.
-
-
-
Element Detail
-
value
public abstract WebServiceRef[] value
Array used for multiple web service reference declarations.
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/xml/ws/WebServiceRefs.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.