- java.lang.Object
-
- javax.xml.ws.spi.Invoker
-
public abstract class Invoker extends Object
Invoker hides the detail of calling into application endpoint implementation. Container hands over an implementation of Invoker to JAX-WS runtime, and jax-ws runtime callsinvoke(java.lang.reflect.Method, java.lang.Object...)
for a web service invocation. Finally, Invoker does the actual invocation of web service on endpoint instance. Container also injects the providedWebServiceContext
and takes care of invokingjavax.annotation.PostConstruct
methods, if present, on the endpoint implementation.- Since:
- JAX-WS 2.2
- See Also:
Provider.createEndpoint(String, Class, Invoker, WebServiceFeature...)
-
-
Constructor Summary
Constructors Constructor and Description Invoker()
-
Method Summary
Methods Modifier and Type Method and Description abstract void
inject(WebServiceContext webServiceContext)
JAX-WS runtimes calls this method to ask container to inject WebServiceContext on the endpoint instance.abstract Object
invoke(Method m, Object... args)
JAX-WS runtime calls this method to do the actual web service invocation on endpoint instance.
-
-
-
Method Detail
-
inject
public abstract void inject(WebServiceContext webServiceContext) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException
JAX-WS runtimes calls this method to ask container to inject WebServiceContext on the endpoint instance. TheWebServiceContext
object uses thread-local information to return the correct information during the actual endpoint invocation regardless of how many threads are concurrently being used to serve requests.- Parameters:
webServiceContext
- a holder for MessageContext- Throws:
IllegalAccessException
- if the injection done by reflection API throws this exceptionIllegalArgumentException
- if the injection done by reflection API throws this exceptionInvocationTargetException
- if the injection done by reflection API throws this exception
-
invoke
public abstract Object invoke(Method m, Object... args) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException
JAX-WS runtime calls this method to do the actual web service invocation on endpoint instance. The injectedWebServiceContext.getMessageContext()
gives the correct information for this invocation.- Parameters:
m
- Method to be invoked on the serviceargs
- Method arguments- Returns:
- return value of the method
- Throws:
IllegalAccessException
- if the invocation done by reflection API throws this exceptionIllegalArgumentException
- if the invocation done by reflection API throws this exceptionInvocationTargetException
- if the invocation done by reflection API throws this exception- See Also:
Method.invoke(java.lang.Object, java.lang.Object...)
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
15/11/2024 07:32:00 Cette version de la page est en cache (à la date du 15/11/2024 07:32:00) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/xml/ws/spi/Invoker.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.