I read the article in question. Very interesting, tons of ideas for discussion, but overall it seems very unpractical, not because the ideas themselves are...
Yes, Java inside itself is not very secure. The list of rules are like a teaser from M Savage. It will make most people think, "but wait..." The Inner Class is...
Chris, Perhaps we could start with a small piece of working tested code, that is // not secure // which implies that it breaks all eight rules, and then work ...
After the meeting we spoke about Firefox extensions. Here is the list of extension add-ons that I currently use for * Improved Control and Remote Host...
Greetings! Join us for the ultimate Ajax/Web event: The 2007 Rich Web Experience (www.therichwebexperience.com) coming to San Jose on September 6-8th. The 2007...
My SOA Using Java Web Services book came yesterday. It is great! Hey, there is a great MS PowerPoint presentation with cool diagrams, discussing many of the...
I realized that my previous message didn't come out exactly right to those SacJug people who don't know me... I said "My SOA Using Java Web Services book..."...
Hello everyone. I haven't attended SACJUG meetings in about a year now but am glad that this is up and running. I am in need of advice and opinion and thanks...
Our client is an innovative leader in the health and wellness industry, serving more than 55 million Americans, is seeking a Java Specialist to come aboard a...
I was trying to put together a small prototype using sms short codes. Most of the connection aggregators want $1000 upfront and $500/month (or similar) to let...
I heard Oracle takes care of thread issues automatically by means of its built-in scheduler. Could someone tell me more about it? A couple of years ago I wrote...
Thanks so much, Darrin! I have already found a permanent position that I am very happy with. I have forwarded this to a few people that might either be...
Last Call for the Premier Ajax/Web 2.0 Event, The 2007 Rich Web Experience (www.therichwebexperience.com) coming September 6-8th to San Jose. The 2007...
Reminder from: sacjug Yahoo! Group http://groups.yahoo.com/group/sacjug/cal Sacramento Java Users Group Meeting Tuesday September 11, 2007 6:00 pm - 8:30 pm ...
sacjug@yahoogroups.com
Sep 9, 2007 12:57 am
867
Could anyone explain why do I need to use the java.io.serializable interface? I read several articles returned by Google search... Basically I am not sure...
Dear Anonymous, To oversimplify: - don't worry about it :-) - when the code blows up decide if you either want your object to be serialized or not - if you...
Hi everyone: I wanted to let you all know about a free webinar on Design Patterns by Alan Shalloway, co-author of Design Patterns Explained: A New Perspective...
Reminder from: sacjug Yahoo! Group http://groups.yahoo.com/group/sacjug/cal Sacramento Java Users Group Meeting Tuesday October 9, 2007 6:00 pm - 8:30 pm (This...
sacjug@yahoogroups.com
Oct 7, 2007 12:56 am
872
October 9, 2007 We will present JUnit Factory, an experimental test-generation service from Agitar Software. Sandwiches and sodas will be sponsored by...
"Oracle said Friday it offered to buy BEA Systems for about $6.66 billion, its latest effort to up the ante against Microsoft and Germany's SAP in the fiercely...
If you - 1. Are interested in moderating this list. 2. Attend meetings at least once a quarter. Please forward this message to Chris Scheuble to identify...
I am pleased to announce that the group has added some more moderators to the sacjug list on Yahoo! We thank all those who were willing to respond to moderator...
Hello, I tried to assign a decimal number to long data type and get an error. long a = 2.5; //compiler complains on this line. double b = 1.5; //This line is...
sue - a long data type in Java is a whole number, not a decimal number. The only two data types that understand decimals are floats and doubles. If you are...
QUESTION Given the following code snippets, explain how the print statement could print 'false' public static <T> void copySet(Set<T> source, Set<T>...
Renuka, Thanks this is an interesting problem.My answer: the add() method is optional for Set, a particular implementation may not implement and simply return...