Geen cache-versie.

Caching uitgeschakeld. Standaardinstelling voor deze pagina:ingeschakeld (code LNG204)
Als het scherm te langzaam is, kunt u de gebruikersmodus uitschakelen om de cacheversie te bekijken.
javax.xml.ws

Annotation Type Action


  • @Documented
    @Retention(value=RUNTIME)
    @Target(value=METHOD)
    public @interface Action
    The Action annotation allows explicit association of a WS-Addressing Action message addressing property with input, output, and fault messages of the mapped WSDL operation.

    This annotation can be specified on each method of a service endpoint interface. For such a method, the mapped operation in the generated WSDL's wsam:Action attribute on the WSDL input, output and fault messages of the WSDL operation is based upon which attributes of the Action annotation have been specified. For the exact computation of wsam:Action values for the messages, refer to the algorithm in the JAX-WS specification.

    Example 1: Specify explicit values for Action message addressing property for input and output messages.

     @WebService(targetNamespace="http://example.com/numbers")
     public class AddNumbersImpl {
         @Action(
             input="http://example.com/inputAction",
             output="http://example.com/outputAction")
         public int addNumbers(int number1, int number2) {
             return number1 + number2;
         }
     }
     
    The generated WSDL looks like:
       <definitions targetNamespace="http://example.com/numbers" ...>
         ...
         <portType name="AddNumbersPortType">
           <operation name="AddNumbers">
             <input message="tns:AddNumbersInput" name="foo"
               wsam:Action="http://example.com/inputAction"/>
             <output message="tns:AddNumbersOutput" name="bar"
               wsam:Action="http://example.com/outputAction"/>
           </operation>
         </portType>
         ...
       </definitions>
     

    Example 2: Specify explicit value for Action message addressing property for only the input message. The wsam:Action values for the WSDL output message are computed using the algorithm in the JAX-WS specification.

     @WebService(targetNamespace="http://example.com/numbers")
     public class AddNumbersImpl {
         @Action(input="http://example.com/inputAction")
         public int addNumbers(int number1, int number2) {
             return number1 + number2;
         }
     }
     
    The generated WSDL looks like:
       <definitions targetNamespace="http://example.com/numbers" ...>
         ...
         <portType name="AddNumbersPortType">
           <operation name="AddNumbers">
             <input message="tns:AddNumbersInput" name="foo"
               wsam:Action="http://example.com/inputAction" />
             <output message="tns:AddNumbersOutput" name="bar"
               wsam:Action="http://example.com/numbers/AddNumbersPortType/AddNumbersResponse"/>
           </operation>
         </portType>
         ...
       </definitions>
     
    It is legitimate to specify an explicit value for Action message addressing property for output message only. In this case, wsam:Action value for the WSDL input message is computed using the algorithm in the JAX-WS specification.

    Example 3: See FaultAction annotation for an example of how to specify an explicit value for Action message addressing property for the fault message.

    Since:
    JAX-WS 2.1
    See Also:
    FaultAction
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element and Description
      FaultAction[] fault
      Explicit value of the WS-Addressing Action message addressing property for the fault message(s) of the operation.
      String input
      Explicit value of the WS-Addressing Action message addressing property for the input message of the operation.
      String output
      Explicit value of the WS-Addressing Action message addressing property for the output message of the operation.

      Eerste pagina van API Java Inhoudsopgave Haut

    • Element Detail

      • input

        public abstract String input
        Explicit value of the WS-Addressing Action message addressing property for the input message of the operation.
        Default:
        ""
      • output

        public abstract String output
        Explicit value of the WS-Addressing Action message addressing property for the output message of the operation.
        Default:
        ""
      • fault

        public abstract FaultAction[] fault
        Explicit value of the WS-Addressing Action message addressing property for the fault message(s) of the operation. Each exception that is mapped to a fault and requires an explicit WS-Addressing Action message addressing property, needs to be specified as a value in this property using FaultAction annotation.
        Default:
        {}

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/xml/ws/Action.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Manuel PHP : https://docs.oracle.com

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut