[digester] keeping parsing logic out of the data model

2010-11-30 Thread Pau Minoves
Hi all, We have some doubts here on how apache digester (2.1) is meant to be used. I don't think we are on a strange scenario so there is probably something we are missing. In our case, we have a (bean) data model that we need to create from a series of xmls. This data model represents network

Re: [digester] keeping parsing logic out of the data model

2010-11-30 Thread Adrian Crum
You could put the parsing helper code in a separate class: public class ParserUtil { public static boolean isFullDuplex(String hardwareDependentString) { return hardwareDependentString.equalsIgnoreCase(FULL-DUPLEX); } } -Adrian --- On Tue, 11/30/10, Pau Minoves pau.mino...@i2cat.net

[fileupload]

2010-11-30 Thread Campbell, Lance
I noticed that when trying to download FileUpload 1.2.1 I see version 1.2.2. Should the documentation be updated on the below URL to add 1.2.2? http://commons.apache.org/fileupload/ Thanks, Lance Campbell Software Architect/DBA/Project Manager Web Services at Public Affairs

[digester] Class loading issue using commons-digester in OSGi setup

2010-11-30 Thread niklas modin
Hi all, I'm trying to use commons-scxml in an OSGi environment (Equinox) and scxml has a dependency on digester, which causes some class loading issues. Digester gets it's own class loader being a separate bundle, however it looks like when ObjectCreateRule.begin() instantiates the SCXML

Re: [digester] Class loading issue using commons-digester in OSGi setup

2010-11-30 Thread Rahul Akolkar
On Tue, Nov 30, 2010 at 1:22 PM, niklas modin niklas.mo...@oracle.com wrote:  Hi all, I'm trying to use commons-scxml in an OSGi environment (Equinox) and scxml has a dependency on digester, which causes some class loading issues. Digester gets it's own class loader being a separate bundle,