Originally posted by Jaikiran Pai:
You mean, once you have logged in programatically, you want to pass the credentials forward? That can be done by adding the ClientLoginModule to your application policy that you configured in the login-config.xml. This might not make much sense unless you are able to you get the configurations right, first. Have you been able to add your application policy the the config file and use it in the servlet? If not, then i would start with this as a first step.
Originally posted by Jaikiran Pai:
You can then use this login module from the servlet through the code that you have already posted.
Originally posted by Syed Wajid:
CONGRATS Joan Pujol.
WHAT IS YOUR OPINION ABOUT THE JAVA 5.0 TIGER DEVELOPERS HANDBOOK FROM OREILLY. DOES IT HAVE THE DEPTH ON THE TOPICS ?
I don't known this book. But if it covers generics and enums depply it can be a good book to complement a SCJP for the 1.4.
I readed a little the
I AM DESPERATE TO GIVE THE EXAM BUT AM NOT ABLE TO GET HOLD OF A NEAT BOOK THAT CAN EXPLAIN THE CONCEPTS IN DEPTH.
I readed the chapter on generics and enums of the Java� Programming Language, The, 4th Edition. And I have to say that is a very complete book.
HOW MUCH TIME DID YOU SPEND ON THEORY AND PRACTICALS AVERAGE ON A DAY ?
I difficult to answer this question. But...
+o- 2 hours a day for 2 month and 4 hours a day the last week.
I had previous Java experience, but not a lot of experience with 1.5 features.
THANKS.[/qb]
Originally posted by Rupak Khurana:
Another proof that Complete Java 2 Certification Study Guide by Heller and Roberts for java 5.0 SUCKS !!!
After reading this book, I postponed my exam date. They just hurried to bring the books to the shelf.
sorry about your result, wait for K&B and then retry..
Originally posted by Akshay Kiran:
are you sure (List<? extends Integer>doesn't throw a warning?
anyway, the explanation is that, the cast is probably needed at runtime
but at runtime, all generic info is erased, so it makes no sense to cast
List<Integer>
whereas List<?> is the same as List, so it doesn't complain about that.
this is what I think.