Mail API  
Author Message
nprabhakaran





PostPosted: 2007-3-19 12:51:00 Top

java-programmer, Mail API i wrote program for sending mail from one server to another but while
comile time it shows an error like Mail API is not found.. i was
downloaded it from sun..but i dont know where to install this API..so,
can u please tell me...?

 
Phi





PostPosted: 2007-3-19 20:03:00 Top

java-programmer >> Mail API email***@***.com wrote:
> i wrote program for sending mail from one server to another but while
> comile time it shows an error like Mail API is not found.. i was
> downloaded it from sun..but i dont know where to install this API..so,
> can u please tell me...?
>

Have you downloaded both: activation.jar and mail.jar?

"activation.jar" and "mail.jar" must be in your classpath:

java -cp .:activation.jar:mail.jar YourClass

greets

phi
 
Arne Vajh鴍





PostPosted: 2007-3-19 20:57:00 Top

java-programmer >> Mail API email***@***.com wrote:
> i wrote program for sending mail from one server to another but while
> comile time it shows an error like Mail API is not found.. i was
> downloaded it from sun..but i dont know where to install this API..so,
> can u please tell me...?

It does not matter where they are installed.

They just need to be in the class path.

And since you should set that explicit, then no problem.

Arne