How to handle disco#info request from a JID in PEP context?

Hi,

I am wondering about the way to handle a disco#info IQ using the Smack client implementaiton.

I am getting the below sample IQ request at my client program:

 <query xmlns="[http://jabber.org/protocol/disco#info](http://jabber.org/protocol/disco#info)" node="[http://www.igniterealtime.org/projects/smack#MOpx/IppIp2exv4uj44MU8HuWad=](http://www.igniterealtime.org/projects/smack#MOpx/IppIp2exv4uj44MU8HuWad=)"></query>

My response to myfrienduserid@ourclientdomain.com should be as follows:

<iq to=‘myfrienduserid@ourclientdomain.com’

from='myuserid@ourclientdomain.com'

id=‘17c05:21606272’

type=‘result’>

<query xmlns=‘http://jabber.org/protocol/disco#info

     node='[http://www.igniterealtime.org/projects/smack#MOpx/IppIp2exv4uj44MU8HuWad=](http://www.igniterealtime.org/projects/smack#MOpx/IppIp2exv4uj44MU8HuWad=)'>

<feature var='[http://jabber.org/protocol/disco#info'/](http://jabber.org/protocol/disco#info'/)>

<feature var='[http://jabber.org/protocol/disco#items'/](http://jabber.org/protocol/disco#items'/)>

<feature var='[http://myclientdomain.com/connect/myfeature-use+notify'/](http://myclientdomain.com/connect/myfeature-use+notify'/)>

How to respond back to the above request programmatically?

Any help in this regard would be of great help.

Thanks,

Jaya Krishna