From: E B <[EMAIL PROTECTED]> > This is about classloaders again. Same old problem > about message style soap services, and soap classes > in soap/WEB-INF/classes. > > 1. How do I find out which classloader loaded the > classes shown in the stack trace?
Have you tried starting up Tomcat under a debugger (gdb) and then telling it to break when certain exceptions are thrown? When you get your exception you look at the classloader of the class on the top of the stack by doing something like this: print this.getClass().getClassLoader() Move up and down the stack to see which classes have been loaded by what.... > > 2. In the stack trace that is shown below, > the class MessageServer is in the common/classes, > but soap is in its web-inf/classes. So soap's > class loader should be able to take the help of > common classloader to load the MessageServer class. > Why then does it complain? > I'm not an expert but isn't there some known issue with SOAP and classloading? -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>