Moved jfreechart to common area from survey tool. This makes the monitoring test run and will encourage other programmers needing charts to use jfreechart.
Got junit tests working - moved jfreechart from survey tool to common area and included new version of survey jar which has the updated jdbc call (i.e. not pass 00:00:00 times back to Hibernate).
Added: /** * Serialzes an object into WDDX XML * @usage var wddxXML:XML = commsInstance.serializeObj(obj); * @param dto The object to be serialized * @return sXML WDDX Serialized XML */ public function serializeObj(dto:Object):XML{ var sXML:XML = new XML(); sXML = wddx.serialize(dto); return sXML; }