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?