DMS: Unable to retrieve password of webtogo client using java sync API
I have referred to the below articles and have tried to retrieve username and password of webtogo.
http://docs.oracle.com/html/A97672_01/wn32rep.htm - check section 3.4.1
Also ,Note :1063742.1 - How to get Webtogo password using Java sync API
The code i used below retrieves username but returns NULL for password.
SyncOption so=new SyncOption();Sync s = new Sync(so); s.doSync();System.out.println("Password : "+so.getUsername())System.out.println("Password : "+so.getPassword())
Any help how i can retrieve password.
-Evanson