Security Review of Online Feed Aggregators with Password Protected FeedOctober 8th, 2008 In my previous article I have already discussed about how to use the Online Feed Aggregators to view the password protected Feed with username and password. Now the next thing that should come to your mind is how do they actually fair in maintaining the security of your account.
How To Accept Password From Console in JavaJanuary 12th, 2006 Finally you can easily accept password from console in Java, without echoing them. This long unmet need has been addressed in JDK 1.6 codeline.
Java Continues As Leading Programming LanguageJune 6th, 2006 Java continues as the leading programming language according to TIOBE index updated on June 2006. Java is rated at 21.128%, an increase of 2.56% from June, 2005.
AdSense as java expert?March 1st, 2005 I was responding to a pdf viewing (using java) question on Artima - http://www.artima.com/forums/flat.jsp?forum=1&thread=96447&start=0&msRange=30. After I submitted my comments I noticed that the first AdSense ad contained the same link I had posted!
Looks like very soon AdSense may supplement the java and other technology experts!
The funny thing was the previous response which states - no way you can do it! Surely he blackholed the AdSense ad like many of us do :)
Seriously though it is not surprising at all.
Of Strategic Languages, Java's Adoption Is Highest - Forrester ReportJuly 17th, 2005 According to Forrester survey data and analysis, Java's 66% penetration is the highest among strategic programming languages for enterprise applications. Visual Basic 6 (VB6) and C/C++ have nearly as much penetration as Java, but VB6 is past mainstream support and C/C++ has a comparatively limited ecosystem.
J2SE 5: New wine in new bottle with old corkMarch 15th, 2005 J2SE stands for Java 2 Standard Edition. The 2 stands for version 2 of the platform.
Java Quiz: Why StringBuilder Should be Used Instead of StringBuffer?August 23rd, 2008 First tell me what is the best way to concatenate large number of String objects? Is it a + b?
Most Java developers know not to use a + b (+ operator) because of huge performance problems, they use StringBuffer instead. In fact I did some tests in the past which confirms this folklore.
Java Gains in PopularityJuly 19th, 2006 Java increased its lead as the leading programming language according to TIOBE's index. PHP maintained its 4th position while Ruby moved up 13 positions to 17th.
Design Patterns in Java (and EJB) ReferencesFebruary 8th, 2006 Three high quality free resources (eBooks & website) for learning about design patterns in Java & EJB for your reading pleasure. Design Patterns in Java - A free eBook which extensively covers wide range of design patterns with good examples.
How To Use cURL (in PHP) For Authentication And SSL CommunicationJune 8th, 2006 Using cURL (in PHP) to access https url is often not as simple as using the proper url. Using it for authentication is also not very clearly documented.
Java SE Goes Beta (Feature Complete). Download Now.February 17th, 2006 Java SE 6 Beta offers the first feature complete version of next major release of the Java SE platform. Sun expects to ship the final release of Java SE 6 in the fall of 2006.
Three Free Notable Java Software / APISeptember 8th, 2005 GMail API for Java
GMailer API for Java (g4j) is set of API that allows Java programmer to communicate to GMail. With G4J programmers can made Java based application that based on huge storage of GMail.
Java Popularity Statistics (from JavaOne 2008)May 7th, 2008 Sun revealed the following statistics about Java at JavaOne 2008:
1. 90% of Personal Computers on Internet have Java
2.
Java Wins Programming Language of 2006 AwardJanuary 11th, 2006 Java has won the "TIOBE Programming Language of 2005" award. The Java language has increased its popularity in 2005 with 4.77%.
Java Application Security Through Static AnalysisJune 28th, 2008 Extendable (by plugins, ...) Static Analysis tools like FindBugs can enhance the security of your Java applications (web as well as standalone or client-servers applications) in several significant ways. Enforcing security policy compliance
Security policies are espoused by security experts such as OWASP and mandated for compliance by many regulations such as Sarbanes-Oxley that require organizations to demonstrate they have done "due diligence" in safeguarding application security and information privacy.
November 10th, 2009 at 6:40 pm
Thanks. This really help me. I was searching for a solution like this, because I tried a lot with other solutions but this works fine.
November 17th, 2009 at 1:33 pm
This is a great idea, however, as you point out, it’s relatively difficult to get working correctly in a multithreaded fashion.
I was being lazy and attempted to use something like this in a JSP page–it was quite disastrous since the default authenticator would not use any other credentials; using it in a servlet container (particularly being lazy and in jsp) requires a lot more thought.