public NotificationMessage getCurrentMessage(QName topicPath)
throws SoapFault
{
GetCurrentMessage get = new GetCurrentMessage(topicPath);
Element responseXML = invoke(WsnConstants.GET_CURRENT_URI, get.toXML());
GetCurrentMessageResponse response = new GetCurrentMessageResponse(responseXML);
return response.getMessage();
}