-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

"Remy Maucherat" <[EMAIL PROTECTED]> writes:

> > > I already apologized 3 times for the problems with Xalan in particular.
> > > Thankfully, the workaround is simple enough.  So here's one more: I'd
> like to
> > > apologoize for letting this bug sneak in the release.
> > >
> > > 4.0.4 b1 should fix it (at least with Xalan). The only thing this
> release
> > > should not like is if you have the servlet API classes in a JAR.
> >
> > Well... I did have servlet.jar in WEB-INF/lib... I removed it.  Stupid to
> have
> > it in there anyway.
> 
> BTW, could I also get more info on your problem with init ?

Yes... init is being called twice on the same instance of the Servlet.

A quick fix is to do a

    private initialized = false;

    public void init( ServletConfig config ) throws ServletException {

        if ( initialized == false ) {

            //do stuff

            initialized = true;

        }    

    }

This fixes the problem... but should be fixed in Tomcat IMO.

- -- 
Kevin A. Burton ( [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] )
             Location - San Francisco, CA, Cell - 415.595.9965
        Jabber - [EMAIL PROTECTED],  Web - http://relativity.yi.org/

Yes I know my enemies, they're the teachers who taught me to fight me;
compromise, conformity, assimilation, submission, ignorance, hypocrisy,
brutality, The Elite. All of which are American Dreams.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Get my public key at: http://relativity.yi.org/pgpkey.txt

iD8DBQE8jFsaAwM6xb2dfE0RAr2lAJ9e5m0K7JOCjV/++vTjSW5Qwg6k0ACgp62R
dSykqJvi1uzTNZoyfZjNgbg=
=jZ3H
-----END PGP SIGNATURE-----

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

Reply via email to