users@jaxb.java.net

Re: namespacePrefixMapper

From: Malachi de AElfweald <malachi_at_EOTI.ORG>
Date: Mon, 16 Jun 2003 15:20:41 -0600

That was it... Added:
System.out.println( this.getClass().getClassLoader().getResource("com/temporalwave/spec/dynarray/jaxb.properties") );

It came up with one of our other jars that should not be including that package.... guess I got some Ant tweaking to do.

Thanks!
Malachi

PS> Also, thanks for providing this functionality -- as I know I was one of the primary people asking for it.


On Mon, 16 Jun 2003 14:26:00 -0700, Kohsuke Kawaguchi <Kohsuke.Kawaguchi_at_Sun.COM> wrote:

>Mmm. OK. Then my guess is that there's old jaxb.properties.
>
>If you are using 1.0.1, you shouldn't be loading the
>"com.sun.xml.bind.marshaller.MarshallerImpl" class. This class is just
>for the backward compatibility with 1.0.
>
>Could you check if
>
> System.out.println( classLoader.getResource("your/package/jaxb.properties") );
>
>returns the correct one?
>
>--