Quote:
Originally Posted by mune72 Unfortunally it doesn't work (I get a java compilation error)... |
It was something very silly:
from
Provisioning prov1 = Provisioning.getInstance();
Account retAcct = prov1.get(AccountBy.id, my_uid);
to
Provisioning prov1 = Provisioning.getInstance();
Account retAcct = prov1.get(
Provisioning.AccountBy.id, my_uid);
But now I'm quite disappointed; all this effort and everything I can get from the object <Account> retAccnt is only the account's mail adress; do you think I can retrive more?
Thanks