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 - 19 Mar 2007 13:03 GMT
> 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øj - 19 Mar 2007 13:56 GMT
> 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