Package org.somda.sdc.dpws.soap
Interface NotificationSource
- All Superinterfaces:
InterceptorHandler
- All Known Implementing Classes:
NotificationSourceImpl
Interface to send notifications to event sinks.
-
Method Summary
Modifier and TypeMethodDescriptionvoidsendNotification(SoapMessage notification) Sends a SOAP notification message.Methods inherited from interface org.somda.sdc.dpws.soap.interception.InterceptorHandler
register
-
Method Details
-
sendNotification
void sendNotification(SoapMessage notification) throws MarshallingException, TransportException, InterceptorException Sends a SOAP notification message.This method returns as soon as the message left the application process.
- Parameters:
notification- outgoing notification message.- Throws:
TransportException- if any transport-related exception comes up during processing. This will hinder the response from being sent.MarshallingException- if any exception occurs during marshalling or unmarshalling of SOAP messages.InterceptorException- if one of the interceptors pops up with an error.
-