i am sending a strucutre though dbsu-glib as follow.
typedef struct{
int a;
int b;
char [5];
}payload;

payload p={5,5,"ARRAY"};

And i am able to send this structure data with function call,which i can see in dbus-monitor as follow.
array[
array[
byte 5;
byte 5;
byte 65;
....
byte 89;
]
]
signature is :'aay'
up to this every thing is OK.

But on qt side(receiver) i dont have any idea as to how to receive this message.what can be the argument of my function in qt application?

i tried with QByteArray,QStringList but no succusses.now,what to do?

These are my confusion:
(1)how to imeplement a method in qt ,which can suites to 'aay' signatures displayed in dbus-monitor?
(2) if we use QDBusArgument for receving structure and arrays,than how should be an implementatin.If remote application is sending the structure,than how to retrieve it at qt ?
(3)what are the ways of receiving structures in qt?

dear freind,no body is replying since long.is it so no one knows about this??