aaaaaaaaaa
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
aaaaaaaaaa
Last edited by chuikingman; April 6th, 2010 at 05:47 AM. Reason: invalid data
You're trying to code outside of any method. Java won't allow you to do this. I would put this code inside the main method (the method that gets called when you run your program directly)
public class test { public static void main(String[] args) { LogonManagerServiceLocator locator = new LogonManagerServiceLocator(); LogonManager logonMgr = locator.getLogonManager(); String sessionId = logonMgr.logon("admgemalto", "gemalto40"); String[] categoryNames = new String[] {"AppletManagement", "ServiceManagement", "NoCategory"}; CategoryBean[] cates = logonMgr.getAccessRights(sessionId, categoryNames); for ( int i=0; i< cates.length; i++ ) { System.out.println(cates[i].getName, cates[i].isGranted()); } boolean success = logonMgr.logout(sessionId); } }
chuikingman (April 6th, 2010)