Link to home
Start Free TrialLog in
Avatar of auduin
auduin

asked on

setting up java mail

Im following the instructions at http://developer.java.sun.com/developer/onlineTraining/JavaMail/exercises/MailSetup/help.html and the error message im getting when I complete task 6 is

Exception in thread "main" java.lang.NoClassDefFoundError: msgsend

Im runnining WinXP, C:\j2sdk1.4.1_03

Task 1 - Download javamail 1.3.1
Task 2 - Download jaf-1.0.2
Task 3 - Unzip and installed in C:\javamail-1.3.1 and C:\jaf-1.0.2
Task 4 - Copied mail.jar and activation.jar to C:\j2sdk1.4.1_03\jre\lib\ext
Task 5 - javac msgsend.java
Task 6 - C:\javamail-1.3.1\demo>java msgsend -o auduin@hotmail.com -M mysmtp.com auduin@hotmail.com (mysmtp.com has been replaced here)

Also added environment variables
JAF_JAR               C:\j2sdk1.4.1_03\jre\lib\ext\activation.jar
JAVAMAIL_JAR      C:\j2sdk1.4.1_03\jre\lib\ext\mail.jar
PATH                   %JAF_JAR%;%JAVAMAIL_JAR%
CLASSPATH          C:\j2sdk1.4.1_03\jre\lib\ext\activation.jar;C:\j2sdk1.4.1_03\jre\lib\ext\mail.jar

Can anyone help? Thanks in advance.
ASKER CERTIFIED SOLUTION
Avatar of kennethxu
kennethxu

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of auduin
auduin

ASKER

Thanks for your help again Kenneth.

That command seems to work, java -classpath %classpath%;. msgsend -o auduin@hotmail.com -M mysmtp.com auduin@hotmail.com

How do I set my system so I dont have to put -classpath %classpath%;.

set environment var to:
CLASSPATH          .;C:\j2sdk1.4.1_03\jre\lib\ext\activation.jar;C:\j2sdk1.4.1_03\jre\lib\ext\mail.jar
Avatar of auduin

ASKER

Thanks again for your help. Really appreciate it.

By the way
CLASSPATH          .;C:\j2sdk1.4.1_03\jre\lib\ext\activation.jar;C:\j2sdk1.4.1_03\jre\lib\ext\mail.jar didnt work so I did
CLASSPATH          C:\javamail-1.3.1\demo;C:\j2sdk1.4.1_03\jre\lib\ext\activation.jar;C:\j2sdk1.4.1_03\jre\lib\ext\mail.jar;
glad to know your problem is solved.
.; means you'll have to execute the java code.class in the dir where code.class is. and you'll need to start a new DOS windows in order to take the new env setting.