IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
 
[Sommaire]  [Top 50]  [F.A.Q.]  [ Java SE ]  [ Java EE ]  [Javadoc standard]  [Contact]
[ 1.4.2 ]  [ 5.0 ]  [ 6.0
Rechercher   
Dans
Options   sensible à la casse
étendre la recherche aux descriptions
Préférences
fr en 
 
Moteurs de recherche
JavaTM 2 Platform Std. Ed. v1.6.0

javax.xml.ws
Interface Provider<T>


public interface Provider<T>

Service endpoints may implement the Provider interface as a dynamic alternative to an SEI.

Implementations are required to support Provider<Source>, Provider<SOAPMessage> and Provider<DataSource>, depending on the binding in use and the service mode.

The ServiceMode annotation can be used to control whether the Provider instance will receive entire protocol messages or just message payloads.

Since:
JAX-WS 2.0
See Also:
Source, SOAPMessage, ServiceMode

Method Summary
 T invoke(T request)
          Invokes an operation occording to the contents of the request message.
 

Method Detail

invoke

T invoke(T request)
Invokes an operation occording to the contents of the request message.

Parameters:
request - The request message or message payload.
Returns:
The response message or message payload. May be null if there is no response.
Throws:
WebServiceException - if there is an error processing request. The cause of the WebServiceException may be set to a subclass of ProtocolException to control the protocol level representation of the exception.
See Also:
MessageContext, ProtocolException

Copyright 2003 Sun Microsystems, Inc. All rights reserved