Not that I know of..  It does seem like Configuration needs some sort of
more expressive/pluggable way of doing this..  Some challenges I can see
would be funny rules like type/key/value are all in order..  Versus
type/value/key or something..

A couple people have been asking for xpath type queires...

Eric

> -----Original Message-----
> From: Mark R. Diggory [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, February 11, 2004 7:53 PM
> To: Jakarta Commons Developers List
> Subject: [configuration][digester] Other XML file formats...
>
>
> I have an XML config file format I'm trying to read into
> Configurator or
> Digester which is not the standard format expected (and which
> I cannot
> change), it looks like:
>
> <Config name="user_config">
>      <Variable type="option" key="DEBUG" value="1" />
>      <Variable type="option" key="SQUID_DIR_SIZE" value="750" />
>      <Variable type="option" key="auto" value="1" />
>      <Variable type="option" key="build_all" value="0" />
>      <Variable type="option" key="help" value="0" />
>
> which I'd like to get handled as
> value = user_config.<type>.<key> or value = user_config.<type>[<key>]
>
> my ultimate goal is to plug it into the tomcat JNDI Resources as to
> attain something more like this in the long run:
>
> Context ctx = new InitialContext();
> ctx.lookup("java:comp/env/userconfig/<type>/<key>
>
> Is there a quick way I can get to this format using using digester or
> configuration?
>
> thx,
> Mark
>
> --
> Mark Diggory
> Software Developer
> Harvard MIT Data Center
> http://www.hmdc.harvard.edu
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to