This document was generated from CDN thread
Created by: Ahmad Imtiaz on 10-12-2009 10:45:29 AM
I am looking for AXL query to get device Profile associated with user.
Subject: RE: Device Profile associated with user.
Replied by: Manas Varma on 16-12-2009 05:12:50 AM
One way is to use the UpdateUser Class.. create an object.. declare a string array and get all the devices asociated with the user.
string[] devices=new string[10];
UpdateUserreq req=new UpdateUserreq();
for(all devices)
req.associatedDevices=devices
The associated devices include the device profile as well
Thanks
Manas