Exemple de requête SOAP au format WS-Notification 1.3

Une requête type émise par une source d'événement doit avoir le format suivant :

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
   xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

   <soapenv:Body>
      <Notify xmlns="http://docs.oasis-open.org/wsn/b-1">
         <NotificationMessage
             xsi:type="ns1:NotificationMessageHolderType"
             xmlns:ns1="http://docs.oasis-open.org/wsn/b-1">
            <Topic xsi:type="ns1:TopicExpressionType">
               <something>
                   ignoré par l'adaptateur de services Web TEC
               </something>
            </Topic>
            <ProducerReference xsi:type="ns3:EndpointReferenceType"
                xmlns:ns3="http://www.w3.org/2005/03/addressing">
               <ns3:Address>
                  protocole://adresse.de.votre.source.d'événement
               </ns3:Address>
            </ProducerReference>
            <Message>
               <CommonBaseEvent ...>
               ...
               </CommonBaseEvent>
            </Message>
         </NotificationMessage>
      </Notify>
   </soapenv:Body>
</soapenv:Envelope>


Rubrique parente
Définition d'interface de services Web

Références
Understanding Common Base Events specification V1.0.1 (Appendix A)
WS-Notification 1.3 specification.