* @throws rocks.xmpp.core.session.NoResponseException If the entity did not respond.
* @see <a href="http://xmpp.org/extensions/xep-0060.html#owner-configure-request">8.2.1 Request</a>
*/
public DataForm getNodeConfiguration() throws XmppException {
IQ result = xmppSession.query(new IQ(pubSubServiceAddress, IQ.Type.GET, PubSubOwner.withConfigure(nodeId)));
PubSubOwner pubSubOwner = result.getExtension(PubSubOwner.class);
return pubSubOwner.getConfigurationForm();
}