GetCurrentMessage request = new GetCurrentMessage( );
TopicExpressionType topic = new TopicExpressionType( );
topic.setDialect( new URI( TopicsConstants.DIALECT_TOPIC_EXPRESSION_SIMPLE ) );
topic.set_any( this.buildTopicExpressionTypeAny( badSectorQName ) );
request.setTopic( topic );
GetCurrentMessageResponse messageResponse = m_stub.getCurrentMessage( request );
assertNotNull( messageResponse );
MessageElement[] responseElements = messageResponse.get_any( );
assertNotNull( responseElements );
assertNotNull( responseElements[0] );
String currentMsg = ( (SOAPElement) responseElements[0] ).toString( );
System.out.println( currentMsg );
validateNotificationMessage( currentMsg );