protected InvokerSupport createDispatcher(SubscribeDocument.Subscribe subscribe) throws NotificationException {
return new NotificationConsumerInvoker(createNotificationConsumer(subscribe.getConsumerReference()));
}
protected NotificationConsumer createNotificationConsumer(final EndpointReferenceType consumerReference) {
return new NotificationConsumer() {
public void notify(NotifyDocument notify) {
System.out.println("WS invoke not yet implemented");
System.out.println("Target: " + consumerReference);
System.out.println("Notify Message: " + notify);
}