|
Key
This line was removed.
This word was removed. This word was added.
This line was added.
|
Changes (21)
View Page History
{center}
To Subscribe response will be as the following message:
{code:xml|width=800}
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<wsnt:SubscribeResponse xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2">
<wsnt:SubscriptionReference>
<wsa:Address xmlns:wsa="http://www.w3.org/2005/08/addressing">
{http://test.com}testNotificationConsumerService::testNotificationConsumerEndpoint
</wsa:Address>
<wsa:ReferenceParameters xmlns:wsa="http://www.w3.org/2005/08/addressing">
<ebm:SOAParameter xmlns:ebm="http://www.ebmwebsourcing.com/wsnotification/specificTypes">
<ebm:InterfaceName xmlns="http://www.ebmwebsourcing.com/default">SubscriptionManager</ebm:InterfaceName>
<ebm:ServiceName xmlns="http://www.ebmwebsourcing.com/default">SubscriptionManagerService</ebm:ServiceName>
<ebm:Endpoint>http://www.ebmwebsourcing.com/subscriptionManager/default</ebm:Endpoint> <ebm:Endpoint>[http://www.ebmwebsourcing.com/subscriptionManager/default]</ebm:Endpoint>
</ebm:SOAParameter>
<ebm:ResourceUuidList xmlns:ebm="http://www.ebmwebsourcing.com/wsnotification/specificTypes">
<ebm:Uuid>f95192f9-bc60-4318-9ae1-25bb03dfe8b2</ebm:Uuid>
</ebm:ResourceUuidList>
</wsa:ReferenceParameters>
</wsnt:SubscriptionReference>
<wsnt:TerminationTime xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</wsnt:SubscribeResponse>
</wsnt:SubscriptionReference>
<wsnt:TerminationTime xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</wsnt:SubscribeResponse>
</soapenv:Body> </wsa:ReferenceParameters>
</wsnt:SubscriptionReference>
<wsnt:TerminationTime xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</wsnt:SubscribeResponse>
</soapenv:Body>
<wsnt:TerminationTime xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</wsnt:SubscribeResponse>
</soapenv:Body>
</soapenv:Envelope>
{code}
The Uuid {{f95192f9-bc60-4318-9ae1-25bb03dfe8b2}} will be used when invoking the un-subscription.
Here is an example of unsubscribe request:
The Uuid {{f95192f9-bc60-4318-9ae1-25bb03dfe8b2}} will be used when invoking the un-subscription.
Here is an example of unsubscribe request:
{code:xml}
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:b="http://docs.oasis-open.org/wsn/b-2">
<soapenv:Header/>
<soapenv:Body>
<b:Unsubscribe>
<ebm:ResourceUuidList xmlns:ebm="http://www.ebmwebsourcing.com/wsnotification/specificTypes">
<ebm:Uuid>f95192f9-bc60-4318-9ae1-25bb03dfe8b2</ebm:Uuid>
</ebm:ResourceUuidList>
</b:Unsubscribe>
</soapenv:Body>
</soapenv:Envelope>
{code}
<soapenv:Header/>
<soapenv:Body>
<b:Unsubscribe>
<ebm:ResourceUuidList xmlns:ebm="http://www.ebmwebsourcing.com/wsnotification/specificTypes">
<ebm:Uuid>f95192f9-bc60-4318-9ae1-25bb03dfe8b2</ebm:Uuid>
</ebm:ResourceUuidList>
</b:Unsubscribe>
</soapenv:Body>
</soapenv:Envelope>
{code}