Well, I've just changed a line in the Extension class and I have it running
now.

/**
     * Trim the supplied string if the string is non-null
     *
     * @param value the string to trim or null
     * @return the trimmed string or null
     */
    private static String getTrimmedString( final String value )
    {
        if( null == value )
        {
            return null;
        }
        else
        {
            return value.replace('"', ' ').trim(); // instead of return
value.trim()
        }
    }

Laurent

----- Original Message -----
From: "Stephen McConnell" <[EMAIL PROTECTED]>
To: "Avalon framework users" <[EMAIL PROTECTED]>
Sent: Tuesday, June 10, 2003 9:35 PM
Subject: Re: ExcaliburExtension : problem reading manifest file


>
> Laurent wrote:
>
>  > It seems that the Excalibur Extension module has some problem
>  > reading manifest files where values are surrounded by "". A
>  > current example comes with the latest realease of the Commons
>  > Digester package with the following manifest file :
>
> <snip/>
>
> Laurent:
>
> Can you confirm if the stack trace is showing that as a
> NumberFormatException from the DeweyDecimal class
> constructor?
>
> Cheers, Steve.
>
> --
>
> Stephen J. McConnell
> mailto:[EMAIL PROTECTED]
> http://www.osm.net
>
> Sent via James running under Merlin as an NT service.
> http://avalon.apache.org/sandbox/merlin
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>



************************************************************************
Ce message a ete inspecte par un anti-virus

Nous vous rappelons que la taille des messages  ne doit pas depasser 1.5 Mo
************************************************************************

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

Reply via email to