Re: class load order and conflicts

2000-11-09 Thread Ingo Luetkebohle
On Thu, Nov 09, 2000 at 12:45:20PM -0500, Wong, Connie wrote: > Can you provide the website of this section 9 spec? I'm interesting to read more >about this stab. Its just the regular servlet spec and section 9 is not very detailed, unfortunately. The URL is http://java.sun.com/products/

RE: class load order and conflicts

2000-11-09 Thread Wong, Connie
Re: class load order and conflicts > > On Thu, Nov 09, 2000 at 04:38:22PM +0100, Kitching Simon wrote: > > I'll have a stab at this one. Any corrections welcome. > > Thanks for the explanation! That explains a piece in section 9 of the > spec: Each servlet gets its

Re: class load order and conflicts

2000-11-09 Thread Ingo Luetkebohle
On Thu, Nov 09, 2000 at 04:38:22PM +0100, Kitching Simon wrote: > I'll have a stab at this one. Any corrections welcome. Thanks for the explanation! That explains a piece in section 9 of the spec: Each servlet gets its own context. The doc could be more elaborate and explain that that implies its

RE: class load order and conflicts

2000-11-09 Thread Kitching Simon
> To: [EMAIL PROTECTED] > Subject: class load order and conflicts > > Hiya, > > sorry, this smells like a FAQ but I couldn't find docs :( > > In which order are the various class dirs searched for classes? > /classes and /lib are automatically in the classpath,

class load order and conflicts

2000-11-09 Thread Ingo Luetkebohle
Hiya, sorry, this smells like a FAQ but I couldn't find docs :( In which order are the various class dirs searched for classes? /classes and /lib are automatically in the classpath, but are they searched last or first? Also, say that another servlet different from mine already uses a class x co