NotifyDocument.Notify notify = notifyDoc.getNotify( );
NotificationMessageHolderType[] notificationMessageArray = notify.getNotificationMessageArray( );
for ( int i = 0; i < notificationMessageArray.length; i++ )
{
NotificationMessageHolderType notificationMessageHolderType = notificationMessageArray[i];
org.xmlsoap.schemas.ws.x2003.x03.addressing.EndpointReferenceType producerReference =
notificationMessageHolderType.getProducerReference( );
org.xmlsoap.schemas.ws.x2003.x03.addressing.AttributedURI address = producerReference.getAddress( );
com.ibm.xmlns.stdwip.webServices.wsBaseNotification.TopicExpressionType topic =
notificationMessageHolderType.getTopic( );
String dialect = topic.getDialect( );
XmlObject message =
notificationMessageHolderType.getMessage( );
String messageXmlString =
message.toString( );
}
}