NoClassDefFoundError - Java Agent

Hi,

I have written a java agent and trying to run it on the Notes 6.03.

My Main class looks like:

public class UploadToDocManager extends AgentBase {

public void NotesMain() {

        ...

        DmLogger log = new DMLogger();

        ...

    }

}

I am working in Lotus Domino Designer. I did export the class ‘DMLogger’.

But Everytime the agent runs, it gives me:

NoClassDefFoundError: DmLogger

Please help me. This agent was running fine on Notes 5. I am surely doing something wrong in deployment.

Thanks

Amit

Subject: NoClassDefFoundError - Java Agent

I don’t understand what you mean by “I did export the class ‘DMLogger’.” Do you mean import? So you have an import statement… is the DMLogger class file included in your classpath / JavaUserClasses or the agent code itself?