I used the profiler yesterday without problems, but now it not work. With trace=on captured an ClassNotFoundException.
[13-06-12 11:35:34:316 CLT] 0000002a SystemOut O Catch: java/lang/ClassNotFoundException
[13-06-12 11:35:34:319 CLT] 0000002a SystemOut O Catch: java/lang/ClassNotFoundException
[13-06-12 11:35:34:346 CLT] 0000002a SystemOut O INST com/enterprisedt/net/ftp/FTPException [com.ibm.ws.classloader.CompoundClassLoader]
[13-06-12 11:35:34:372 CLT] 0000002a SystemOut O Catch: java/lang/ClassNotFoundException
[13-06-12 11:35:34:401 CLT] 0000002a SystemOut O Catch: java/lang/ClassNotFoundException
...
I installed only profile.jar on server. Do I need install other jars ?
I created a cfilter for Websphere App Server V6.1
package com.mentorgen.tools.profile.instrument.clfilter;
public class WASClassLoaderFilter implements ClassLoaderFilter {
public boolean canFilter() {
return true;
}
public boolean accept(ClassLoader loader) {
return loader.getClass().getName().equals( "com.ibm.ws.classloader.CompoundClassLoader" );
}
}
in properies file:
ClassLoaderFilter.1=com.mentorgen.tools.profile.instrument.clfilter.WASClassLoaderFilter
Please help!!
Thanks