I'm doing a project where I was using ColdFusion to run a CGI and convert data from one system to another using XML data files. I'm converting it from...
I haven't used JDK native XML handling. I've used JDOM for XML processing for years for its ease of use: SAXBuilder builder = new SAXBuilder(); Document doc =...
... Hash: RIPEMD160 Depending on how intense you intend to get with your DOM and XPath work, jdom has a much nicer API than the W3C's API and supports XPath ...
Denver, CO. March 28th - 31st, 2006. Hibernate Fundamentals is a 4-day public workshop that will assist developers with relational/object-mapping technology...
Hello, this is just a friendly reminder that my company Rally Software is offering several two-day Certified ScrumMaster Training and Advanced Certified...
Hello, my company Rally Software is offering a free seminar on "Scaling Agile Development" on March 24, 2006 from 8:30am-12pm at the Westin Westminster. This...
I was using a TreeSet for a collection of custom objects yesterday and ran into a strange thing. When I added an item to a different collection, then tried to...
When you say that you are removing or adding to another collection, are you referring to the exact same instance or an new instance with the exact same values...
... It was the same instance. I copied that instance into a new collection and tried to delete it from the old collection. The idea was that I was culling...
... Hmm, that's really strange. I just wrote up a couple of quick tests and the TreeSet was fine deleting the same instance of an arbitrary object I made...
... Not dumb at all. That's exactly what it was. I had never over-ridden equals, but when I had over-ridden the compareTo method I had a situation where I...
I am trying to calculate the age of a person when specific events happened in a persons life. Something like: static int calculateAge(Date DateOfBirth, Date...
The key to doing this without a third-party library is to use java.util.Calendar. Look at the setTime(Date) method, the get(int) method and the YEAR const....
... Hash: RIPEMD160 The bummer about that route is you have to worry about things like leap years and the like. Not to mention that years aren't exactly 365...
I think I figured out my problem. Here is the code: age = String.valueOf(EventYear - DOBYear ); if((EventMonth < DOBMonth) || ((EventMonth == DOBMonth) &&...
List, I want to access a remote stateless session facade bean on a remote jvm. I would like to know the correct syntax in for the ejb-fef section of the...
I recieve the following error from bea weblogic 8.1: rror message <Mar 21, 2006 10:22:28 AM EST> <Warning> <Net> <BEA-000905> <Could not open conn ection with...
I'm trying to figure out if I actually have to resort to creating a full-blown custom dialog to do what I want. Basically, I want an input dialog that...
I wrote a Java app that opens a connection to a web CGI, posts to the form, and gets the results. I went to run against the production box and found out it's...
The client doesn't need a certificate unless the server demands it. Most HTTPS connections are configured so that only the server certificate is used. ...
Simon Roberts
thorpflyer@...
Mar 30, 2006 2:55 pm
413
... Thanks for the assistance. In my case, I found out the server does demand it and figured out what I was doing wrong. Here's what I did. There's a few...
I posted before that I added an HTTPS connection using certificates to a program I'm working on. It works fine, but I'm seeing one strange thing and wanted to...